From 410aa65d4c218f116cee1f3b029c2a63f320024d Mon Sep 17 00:00:00 2001 From: RainSun Date: Sun, 17 Jan 2021 22:37:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=94=99=E8=AF=AF=E6=8F=90?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qr/qrcode.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qr/qrcode.html b/qr/qrcode.html index ac8da83..d3918b8 100644 --- a/qr/qrcode.html +++ b/qr/qrcode.html @@ -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)