Site Notice
hello, world
Difference between revisions of "Short url"
From Project-EPB Commons
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要 (历史版本:1102)) |
||
Line 6: | Line 6: | ||
<div id="tencent"> | <div id="tencent"> | ||
<pre class="urlFinal">https://url.cn/</pre> | <pre class="urlFinal">https://url.cn/</pre> | ||
− | <input placeholder | + | <input placeholder="https://wjghj.cn" class="urlRequest"/> <button onclick="getTencent()">生成</button> |
<script> | <script> | ||
function getTencent() { | function getTencent() { | ||
− | + | $.ajax({ | |
− | + | url: 'https://doc.wjghj.cn/surl/?url='+$('#tencent .urlRequest').val(), | |
− | + | dataType: 'jsonp', | |
− | + | type: 'get', | |
− | + | success: function(data) { | |
− | + | $('#tencent .urlFinal').html(data.short_url); | |
− | + | } | |
− | |||
− | |||
− | $('# | ||
− | } | ||
}); | }); | ||
} | } | ||
− | </ | + | </sctipt> |
</html> | </html> |
Revision as of 01:46, 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://doc.wjghj.cn/surl/?url='+$('#tencent .urlRequest').val(), dataType: 'jsonp', type: 'get', success: function(data) { $('#tencent .urlFinal').html(data.short_url); } });
} </sctipt> </html>