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