Site Notice

hello, world

Short url

From Project-EPB Commons
Revision as of 03:18, 22 November 2019 by 机智的小鱼君 (talk | contribs) ([InPageEdit] 没有编辑摘要)

<html>

<pre id="url"></pre> <input placeholder="https://wjghj.cn" value="https://wjghj.cn" id="request"></input><br/> <button onclick="start()">生成</button>

<script> function start() {

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

} </script> </html>