私は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)
常に false と評価される場合です。
エラーを指摘していただけますか?