我无法根据用户输入的密码拒绝用户访问网页。我做到了,如果他们把管理员作为密码,页面将显示一个div,但它不起作用。谁能帮我找到问题所在。
<input id="passwordInput" type="password" value="">
<button id='signInButt'>SIGN IN</button>
<script>
var signInButt = document.getElementById('signInButt');
signInButt.addEventListener('click', function () {
if (passwordInput == "admin") {
signInPage.style.display = 'none';
menuPage.style.display = 'block';
dontHaveAccount1.innerHTML = usernameInput.value;
} else {
alert("wrong password");
}
});
</script>
答案 0 :(得分:0)
这是不安全的,你不应该这样做......只是为了纠正你的代码:
var passwordInput = document.getElementById('passwordInput');
...
if (passwordInput.value === "admin") {