Site Notice

hello, world

Short url

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

此页收集一些短网址生成api

腾讯

  • url.cn

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

 console.info($('#tencent .urlRequest').val());
 $.ajax({
   url: 'https://doc.wjghj.cn/surl',
   dataType: 'jsonp',
   type: 'get',
   data: {url: $('#tencent .urlRequest').val()}
   success: function(data) {
     $('#tencent .urlFinal').html(data);
   }
 });

} </script> </html>