0

在ajax调用之前添加类工作但不是在ajax调用之后?

$.ajax({
            type: "POST",
            url: "../ajax/basket.php",
            data: {planproductId: productIDVal, action: "addToBasket"},
            success: function(theResponse) {
                if (theResponse.indexOf("<li>" < 0))
                {
                    $("#notication").addClass('error-box');
                    $("#notification").text(theResponse);
                    $("#notificationsLoader").empty();
                    return;
                }
            }
       });
.error-box {
    background:#ffecec url('../img/error.png') no-repeat 10px 50%;
    border:1px solid #f5aca6;
}
4

2 回答 2

2

这应该是...

$("#notification").addClass('error-box');

不是...

$("#notication").addClass('error-box');

而这应该是...

 if (theResponse.indexOf("<li>") < 0)
于 2013-06-21T19:03:42.710 回答
2

你的 if 条件是错误的 - 它应该是这样的(假设#notication是一个错字

 if (theResponse.indexOf("<li>") < 0)
于 2013-06-21T19:04:10.787 回答