ajax响应函数无法重定向页面

时间:2014-07-12 14:26:49

标签: php jquery ajax

在按钮上单击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

回声&#34;完成&#34 ;;

我收到输出Done但无法重定向页面

2 个答案:

答案 0 :(得分:0)

我认为问题出在window.location.assign('enter.php')中。 您必须正确显示路径。

答案 1 :(得分:0)

您是否尝试window.location.href = "enter.php"代替window.location.assign('enter.php');