加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
convert.html 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
Kevin 提交于 2016-11-23 23:01 . 放弃百度CDN的jquery. (百度的BUG)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>网址转换</title>
<script src="js/jquery.min.js"></script>
</head>
<body>
<script>
function link(url) {
return '<a href="' + url + '">' + url + '</a>';
}
function convert() {
var url = document.getElementById("url-edit").value;
url = 'http://bgwp.oschina.io/baye/loadlib.html?' + encodeURI(url);
$("#result").html("版本地址: " + link(url));
$("#short").html('');
$.ajax({
url: "http://50r.cn/urls/add.jsonp?url=" + encodeURI(url),
dataType: "jsonp",
jsonp: "callback",
jsonpCallback: "www_50r_cn_jsonp_callback",
type: "GET",
success: function(resp) {
$("#short").html('缩短网址: ' + link(resp.url));
},
error: function() {
$("#url-title").html("");
$("#url").html("请求失败");
}
});
}
</script>
<input id="url-edit" type="text">
<button onclick="convert()">转换</button>
<br>
<div id="result"></div>
<div id="short"></div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化