在按钮上单击ajax功能以重定向页面。
$.ajax({
type: "POST",
url: "logindata.php",
data: {request:uname,request1:upass},
success: function(){
},
complete: function(response)
{
if((response.responseText)=="Done"){
window.location.assign('enter.php');
}
$("#status").html("<font color='red'>"+response.responseText+"</font>");
}
我的php代码logindata.php
我收到输出Done
但无法重定向页面
答案 0 :(得分:0)
我认为问题出在window.location.assign('enter.php')中。 您必须正确显示路径。
答案 1 :(得分:0)
您是否尝试window.location.href = "enter.php"
代替window.location.assign('enter.php');
?