1

我的 chrome 上的 jquery ajax 有问题。Ajax 会像这样回显结果:

1||result goes here

这是ajax脚本:

$("#load_cards").click(function() {
        $("#load_cards").fadeOut('fast');
        var form_data = {
            query: 'cardpack',
            page: page,
            pack: pack
        };
        $.ajax({
            type: "POST",
            url: 'ajax.php',
            data: form_data,
            success: function(response)
            {
                response_d = response.split("||");
                response_message = parseInt(response_d[0]);
                response_html = response_d[1];

                if (response_message == 1) {
                    hist = $("#card_pack_list").html();
                    $("#card_pack_list").html(hist+response_html);
                    page = page+1;
                }
                else {

                }
                $("#load_cards").fadeIn('fast');
            }
        });
    });

问题是 firefox 和 opera 将 response_message 识别为 1 但 chrome 没有。为什么会这样,我该如何克服?我在 xampp 虚拟服务器上运行脚本。

4

1 回答 1

1

您确定 Chrome 会进入“成功”回调吗?

如果没有,请尝试在 ajax 调用中添加“完成”和“错误”回调,看看发生了什么:

success: function(response) {
    console.log("success callback");
    ...
},
error: function(jqXHR, textStatus, errorThrown) {
    console.log("error callback : " + textStatus);
},
complete: function(jqXHR, textStatus) {
    console.log("complete callback : " + textStatus);
}
于 2013-05-13T08:19:04.327 回答