bremen_short_url/BackEnd/test.html

38 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script>
$(document).ready(function () {
var formData = {
id: '603346542439',
key: 't08ktmuqodk0uddg9vx1wprcpegp443',
url: 'https://www.mobile01.com/newsdetail/29284/2kgames-gearboxsoftware-borderlands3',
txt: '豪快感十足的射擊打寶遊戲! 《邊緣禁地3》洛杉磯實機試玩體驗'
}
$.ajax({
url: "https://bremen.tw/getShortUrl.ashx",
type: "POST",
data: formData,
success: function (data, textStatus, jqXHR) {
if (data.ret === "yes") {
alert(data.short_url);
} else {
alert('失敗: ' + data.message);
}
},
error: function (jqXHR, textStatus, errorThrown) {
alert('网絡或伺服器发生错误,请稍后重试!');
waitingDialog.hide();
}
});
});
</script>
</head>
<body>
</body>
</html>