更新错误提示

This commit is contained in:
RainSun 2021-01-17 22:37:36 +08:00
parent 0e86bb913e
commit 410aa65d4c

View File

@ -32,14 +32,14 @@
var id = GetQueryString("id")
// 不合法id的处理
if(id == null || id.search(/\W+/) != -1 || id.length != 24) {
window.location.replace("https://qr.lacus.site/qr/410.html");
window.location.replace("https://qr.lacus.site/qr/500.html");
}
var data = document.createElement("script");
data.src = `https://qr.lacus.site/data/${id}.js`
var s = document.getElementsByTagName("script")[0];
// 加载失败处理默认失败时间是2秒
var timer = setTimeout(function(){
window.location.replace("https://qr.lacus.site/qr/500.html");
window.location.replace("https://qr.lacus.site/qr/410.html");
},2000)
data.onload = function(){
clearTimeout(timer)