我在我的 ajax 请求中收到错误 200。我想在我的 ajax 请求中向页面发布 1 个值,这是一个电子邮件地址。有人可以告诉我出了什么问题
错误:
message=:[object Object], text status=:parsererror, error thrown:=SyntaxError: JSON.parse: unexpected end of data
刚刚更改为 $.parseJSON 它没有错误但成功功能不会提醒 JQuery
$('#checkemail').click(function() {
var json = $.parseJSON({ "email": $('#email').val() });
$.ajax({
url:'http://' + location.host + '/buyme/include/getemailaddress.php',
type:'POST',
contentType: "application/json; charset=utf-8",
data: json,
dataType:"json",
success: function(msg) {
alert(msg);
},
error: function(msg, textStatus, errorThrown) {
alert( 'message=:' + msg + ', text status=:' + textStatus + ', error thrown:=' + errorThrown);
}});
});