4

私はそのようなことをしたい:

$('.anwer_labels').click(function() {
    $(this).toggleClass('active');
    $('.anwer_labels').removeClass('active');
   // $(this).addClass('active').siblings().removeClass('active');;
   // $(this).removeClass('active');
})

この行では、例外を追加して、含めないようにします$(this)

$('.anwer_labels').removeClass('active'); //some code here to not add $(this)

これはできますか?

4

2 に答える 2

9

not()やります。

$('.anwer_labels').not(this).removeClass('active');
于 2013-05-02T06:41:52.297 に答える