为什么css类不适用于每个jquery

时间:2016-03-15 11:13:26

标签: jquery

当我点击一个链接时,所有活动的类都被删除了,但是在这个对象上没有添加类激活了!

$(".bootgrid-table th > .column-header-anchor > span.text + span.jquery-bootgrid-arrow").prev("span.text").addClass("active");

$('.bootgrid-table th > a').click(function () {
    $('.bootgrid-table th > a').not(this).each(function () {
        $(this).find("span.jquery-bootgrid-arrow").prev("span.text").removeClass("active");
    });

    $(this).find("span.jquery-bootgrid-arrow").prev("span.text").addClass("active");

});

1 个答案:

答案 0 :(得分:0)

试试这个:

$('.bootgrid-table th > a').click(function () {
        $(".active").removeClass("active");

       $(this).find("span.jquery-bootgrid-arrow").prev("span.text").addClass("active");

});