Site Notice

hello, world

Difference between revisions of "Short url"

From Project-EPB Commons
([InPageEdit] 没有编辑摘要)
([InPageEdit] 没有编辑摘要)
Line 6: Line 6:
 
<script>
 
<script>
 
function start() {
 
function start() {
  new mw.Api().post({
+
    $.ajax({
     action: 'shortenurl',
+
     'url': 'https://common.wjghj.cn/api.php',
     url: $('#request').val()
+
     'data': {
  }).then(function(data){
+
      'url': $('#tencent .urlRequest').val()
    console.info(data.shortenurl.shorturl);
+
    },
    $('#url').html(data.shortenurl.shorturl);
+
    'type': 'post',
 +
    'dataType': 'jsonp',
 +
    'success': function(data) {
 +
      $('#url').html(data.shortenurl.shorturl);
 +
    }
 
   });
 
   });
 
}
 
}
 
</script>
 
</script>
 
</html>
 
</html>

Revision as of 03:11, 22 November 2019

<html> <div id="tencent"> <pre id="url"></pre> <input placeholder="https://wjghj.cn" value="https://wjghj.cn" id="request"/> <button onclick="start()">生成</button> </div> <script> function start() {

   $.ajax({
   'url': 'https://common.wjghj.cn/api.php',
   'data': {
     'url': $('#tencent .urlRequest').val()
   },
   'type': 'post',
   'dataType': 'jsonp',
   'success': function(data) {
     $('#url').html(data.shortenurl.shorturl);
   }
 });

} </script> </html>