当我点击一个链接时,所有活动的类都被删除了,但是在这个对象上没有添加类激活了!
$(".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");
});
答案 0 :(得分:0)
试试这个:
$('.bootgrid-table th > a').click(function () {
$(".active").removeClass("active");
$(this).find("span.jquery-bootgrid-arrow").prev("span.text").addClass("active");
});