Site Notice
hello, world
Difference between revisions of "Short url"
From Project-EPB Commons
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
Line 2: | Line 2: | ||
<pre id="url"></pre> | <pre id="url"></pre> | ||
− | <input placeholder="https://wjghj.cn" value="https://wjghj.cn" id="request"></input> | + | <input placeholder="https://wjghj.cn" value="https://wjghj.cn" id="request" style="width:20em"></input> <button onclick="start()">生成短网址</button> |
− | <button onclick="start()"> | ||
<script> | <script> |
Revision as of 03:21, 22 November 2019
<html>
<pre id="url"></pre> <input placeholder="https://wjghj.cn" value="https://wjghj.cn" id="request" style="width:20em"></input> <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(), format: 'json' }, success: function(data) { $('#url').html(data.shortenurl.shorturl); } });
} </script> </html>