JavaScript密码检查器



我使用JavaScript和IF循环进行密码检查。但是,当我输入不是JavaScript的字符串时,没有显示警报。这是我的代码。

<script type = "text/javascript">
function password_prompt() {
    var password = window.prompt("Please enter the correct password ", ""); //password = javascript
    if (password == "javascript") {
    var x = window.confirm("Please confirm you want to enter the webpage!");
        if (x != 1) {
        window.close();
        window.open("https://www.google.com/");
    }
    if (password != "javascript") {
        window.alert("You entered the wrong password! Page will now close!");
    window.close();
    window.open("about:blank");
        }
    }
}
</script>

<script type = "text/javascript">
function password_prompt() {
    var password = prompt("Please enter the correct password ", ""); //password = javascript
    if (password == "javascript") {
    var x = confirm("Please confirm you want to enter the webpage!");
        if (x != 1) {
        window.close();
        window.open("https://www.google.com/");
    }
    if (password != "javascript") {
        alert("You entered the wrong password! Page will now close!");
    window.close();
    window.open("about:blank");
        }
    }
}
</script>

<script type = "text/javascript">
function password_prompt() {
    var password = window.prompt("Please enter the correct password ", ""); //password = javascript
    if (password == "javascript") {
        var x = window.confirm("Please confirm you want to enter the webpage!");
        if (x != 1) {
            window.close();
            window.open("https://www.google.com/");
        }
    }
    if (password != "javascript") {
        window.alert("You entered the wrong password! Page will now close!");
        window.close();
        window.open("about:blank");
    }
}
</script>

最新更新