我正在学习Ajax表单流程。我的问题是:当我提交表单时,它可以工作并重定向到另一个页面。但是当我点击那里的后退按钮时,我没有被重定向到上一页。我在这里做错了什么?
<form id="form-admin-login">
<input name="username" type="text" placeholder="User name" class="input-field" required="">
<input name="password" type="password" placeholder="Password" class="input-field" required="">
</form>
<button name="submit" onClick="submit_login()" class="btn btn-login">Login</button>
AJAX
function submit_login(){
$.ajax({
type: "POST",
data: $("#form-admin-login").serialize(),
url: "ajax/ajax-admin-login.php",
dataType: "json",
cache: false,
beforeSend:function(){
},
success: function(data) {
if(data['error']==0)
{
window.location.replace('dashboard.php');
}
else if (data['error']==1)
{
$("#showError").removeClass("hide");
$("#error-message").html(data['message']);
}
},
error: function(jqXHR, textStatus, errorThrown){
}
})
答案 0 :(得分:6)
您需要使用
重定向window.location.assign(url);
window.location = url;
window.location.href = url;
不是
window.location.replace(URL);
因为location.href只会导航到新网址。另一方面,replace方法导航到URL而不向历史记录添加新记录。