HTML代码如下:
<script type="text/javascript">
function password() {
var testV = 1;
var pass1 = prompt('请输入密码:','');
while (testV < 5) {
if (!pass1)
history.go(-1);
if (pass1 == "666") {//设置密码
window.location.href = "index2.html";
break;
}
if (pass1 == "666") {//设置密码
window.location.href="index2.html";
break;
}
testV+=1;
var pass1 =
prompt('密码错误','');
}
if (pass1!="password" & testV ==3)
history.go(-1);
return " ";
}
document.write(password());
</script>
-----------------------------------------------------------------------------------------------
PC端的浏览器以及安卓端的微信内置浏览器能正常访问,IOS下微信内置浏览器访问异常(没有提示输入密码的弹窗)。
用微信web开发者工具进行调试看看
༺࿈有用࿈༻ ✧(≖ ◡ ≖✿) ♪ ♩ ♫ ♬ ¶ ‖♭ ♯ ♪ § ∮ ♪ ※ ∴ ∵ ♬ ∽ ¥ ♪ Ψ $♪
密码校验放前端有点儿戏啊
--↓↓👍点击“有用”是回答的动力哦
你好 最后怎么处理的