如果部分不能用于AJAX响应

时间:2017-09-17 18:04:53

标签: php jquery ajax

我正在使用AJAX进行登录。我从我的进程页面获得了正确的输出,但在AJAX中它只响应了其他部分。为什么不检查是否有条件?它直接转向其他部分。甚至我试过

if(response == 'true'){}
if(response === "true"){}
if(response === true){}

你能帮助我吗?

Process.php

if(condtion){
echo "true";
else {
  echo "Email & Password does not match";
}

ajax.php

$.ajax({
            type: 'post',
            url: 'process?key=login',
            data: $('.login_submit').serialize(),
           success: function (response) {
          if(response === 'true'){
             $("#login_call").hide();   
             window.location.reload();     
            }else{
              $('.login_error').css('displaay','block');
                $(".login_error").html(response);
              }

            }
          });

0 个答案:

没有答案