1

我有一个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)总是被评估为假。

你能指出我的错误吗?

4

2 回答 2

0

尝试使用“===1”而不是“==1”

于 2013-05-27T08:21:37.677 回答
-1

我会从您的 PHP 脚本中返回一个文本字符串,例如“SUCCESS”,而不是 1 或 0。

在此之前,我还会尝试 javascript 比较,就好像它是一个带引号的字符串:

例如

if( html == "1" )
于 2014-05-29T20:39:19.853 回答