Как установить двойное условие в JavaScript?
Мой код не работает.С правильным паролем, window.location не работает
var attempt = 3; // Variable to count number of attempts.
// Below function Executes on click of login button.
function validate() {
var password = document.getElementById("password").value;
if (password == "ad" && event.keyCode === 13) {
window.location = "https://pac.com/arias"; // Redirecting to other page.
return false;
} else {
attempt--; // Decrementing by one.
alert("Contraseña incorrecta. Inténtalo de nuevo!");
// Disabling fields after 3 attempts.
if (attempt == 0) {
document.getElementById("password").disabled = true;
document.getElementById("submit").disabled = true;
return false;
}
}
}
работает только одно условие, но не оба условия ... ¿Что я делаю не так?