Site Notice
hello, world
Difference between revisions of "Short url"
From Project-EPB Commons
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
Line 1: | Line 1: | ||
<html> | <html> | ||
− | + | ||
<pre id="url"></pre> | <pre id="url"></pre> | ||
− | <input placeholder="https://wjghj.cn" value="https://wjghj.cn" id="request"/> <button onclick="start()">生成</button> | + | <input placeholder="https://wjghj.cn" value="https://wjghj.cn" id="request"></input><br/> |
− | + | <button onclick="start()">生成</button> | |
+ | |||
<script> | <script> | ||
function start() { | function start() { | ||
Line 9: | Line 10: | ||
'url': 'https://common.wjghj.cn/api.php', | 'url': 'https://common.wjghj.cn/api.php', | ||
'data': { | 'data': { | ||
− | 'url': $('# | + | 'url': $('#request').val() |
}, | }, | ||
'type': 'post', | 'type': 'post', |
Revision as of 03:13, 22 November 2019
<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', 'data': { 'url': $('#request').val() }, 'type': 'post', 'dataType': 'jsonp', 'success': function(data) { $('#url').html(data.shortenurl.shorturl); } });
} </script> </html>