我有一个ajax表单。我正在尝试打印有关成功的相关消息。
所以jQuery:
//start ajax
$.ajax({
url: $(this).attr('action'),
type: "POST",
data: data,
cache: false,
success: function (html) {
if (html == 1) {
$('#getquotepopup').fadeTo('slow', 0, function(){$('#cboxLoadingGraphic').remove();});
} else {
alert('Sorry, unexpected error. Please try again later.');
}
}
})
和接收端的php:
if (wp_mail($to, $subject, $message)) {
// the message was sent...
//for Ajax, create response .OK.
return 1;
} else {
return 0;
}
但问题是如果(html == 1)
总是被评估为假。
你能指出我的错误吗?