英文:
window.location does not Redirect with Ajax
问题
$.ajax({
url: 'assets/php/action.php',
method: 'post',
data: $("#register-form").serialize() + '&action=register',
success: function(response) {
$("#register-btn").val('Sign Up');
if (response === 'register') {
alert("you will now be redirected");
window.location = 'home.php';
} else {
$("#regAlert").html(response);
}
}
});
英文:
I have a page with several user controls that use Ajax. When I try to do window.location from this page, Ajax traps the call and does not allow the redirect.
$.ajax({
url: 'assets/php/action.php',
method: 'post',
data: $("#register-form").serialize()+'&action=register',
success:function(response){
$("#register-btn").val('Sign Up');
// console.log(response);
if(response === 'register'){
alert("you will now be redirected");
window.location = 'home.php';
}
else{
$("#regAlert").html(response);
}
}
});
答案1
得分: 0
请使用这个代码片段代替:window.location.href = 'home.php';
英文:
Use this rather window.location.href = 'home.php';
专注分享java语言的经验与见解,让所有开发者获益!
评论