我在一个 php 文件中创建了两个 JSON。
$response = array('invalid' => true);
$response = array('valid' => true);
现在我创建一个ajax并尝试根据json更改输入框的类。
$.ajax({
type: "GET",
url: '/script/validate_email.php',
data: {i_emial:val_i_email},
cache: false,
success: function (data) {
$('#div118').html(data);
if (response.valid == true) {
// remove previous class and add another class
} else {
// remove previous class and add another class
}
}
});
但它不起作用。怎么解决?
但#div118 中的结果数据显示:{"invalid":true}
或{"valid":true}
编辑:忘记提及我使用header('Content-Type: application/json');