Site Notice
hello, world
Difference between revisions of "Short url"
From Project-EPB Commons
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
Line 11: | Line 11: | ||
$.ajax({ | $.ajax({ | ||
url: 'https://sa.sogou.com/gettiny?url='+$('#tencent .urlRequest').val(), | url: 'https://sa.sogou.com/gettiny?url='+$('#tencent .urlRequest').val(), | ||
− | dataType: ' | + | dataType: 'plain', |
type: 'get', | type: 'get', | ||
success: function(data) { | success: function(data) { |
Revision as of 00:42, 22 November 2019
此页收集一些短网址生成api
腾讯
- url.cn
<html> <div id="tencent"> <pre class="urlFinal">https://url.cn/</pre> <input placeholder="https://wjghj.cn" class="urlRequest"/> <button onclick="getTencent()">生成</button> <script> function getTencent() {
$.ajax({ url: 'https://sa.sogou.com/gettiny?url='+$('#tencent .urlRequest').val(), dataType: 'plain', type: 'get', success: function(data) { $('#tencent .urlFinal').html(data); } });
} </script> </html>