在stackoverflow中已经多次看到这个问题并且有很多解决方案,但设置它返回false,使用location.replace而不是location.href并不适合我。你能帮我看一下我的代码中的问题:
"use strict";
var pass = document.getElementById("password").value, repass = document.getElementById("repassword").value;
if (pass !== repass) {
window.alert("password does not match!");
return true;
} else {
window.alert("Thank You,\nYou have successfully registered.");
window.location.replace("Login.html");
return false;
}
答案 0 :(得分:0)
您可以window.location = '/Login.html'