{
url:'login.php',
DataType: 'json',
data:{email:user_name, password:pass_word},
success: function(data)
{
console.log(data);
if (ResponseCode=="200")
{
window.location.href="";
}
},
error: function(error){}
});
答案 0 :(得分:0)
我理解你的问题。
if (data[0].ResponseCode=="200")
{
window.location.href="";
}