我有:
<script>
$('#email').on('blur', function(){
email = $(tihs).val();
$.ajax({
type: "POST",
url: "ajax.php",
data: {
'email': email,
'job': 'check',
},
dataType: "JSON",
success: function (response) {
// the response from PHP is smth like:
// {"status":"failed","reason":"email_not_validated"}
// now I want to:
if(response.status == 'success'){
}else{
}
}
})
});
</script>
这似乎适用于除IE以外的所有浏览器,为什么会这样?
我做对了吗? 我唯一需要的是访问返回的数据,如response.status
和response.reason
。
感谢您的帮助
这是一个
提到的IE10错误,可以通过添加来修复
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9" />
在<head>
.请注意,在<head>
中不应有另一个带有X-UA-Compatible
的元标记,因为前一个元标记将被覆盖。