我有一个 sign_ in form ,当我尝试登录时,方法 window.location =“index.php”不会加载我的index.php页面。但是,在我单击登录并在新选项卡中加载sign_in表单后,将加载index.php页面。
success: function(response){
if(response == "0"){
alert ("Wrong User Id or Password");
}else{
window.loaction = "index.php"
}
}
需要做什么才能加载index.php页面?
答案 0 :(得分:3)
问题是你拼错了,location
而不是loaction
答案 1 :(得分:0)
window.location.href = "index.php"