- 下面的腳本我想實現連續輸入3次賬號密碼錯誤自動跳轉到禁止登陸頁面怎麼實現
-
<script>
function check(){
var name=document.getElementById("name").value;
var pass=document.getElementById("pass").value;
if(name=="賬號" && pass=="密碼"){
alert("登入成功");
window.document.f.action="shujubiao/";
window.document.f.submit();
}else{
alert("用戶名或密碼錯誤");
}
}
</script>
最佳回答:
var errCount = 0;
function check() {
if (errCount < 3) {
var name = document.getElementById("name").value;
var pass = document.getElementById("pass").value;
if (name == "賬號" && pass == "密碼") {
errCount = 0;
alert("登入成功");
window.document.f.action = "shujubiao/";
window.document.f.submit();
} else {
errCount++;
alert("用戶名或密碼連續錯誤次數" + errCount);
}
}
if (errCount == 3) {// 連續輸入3次賬號密碼錯誤
location.href = "登陸頁地址..";
}
}