私はそのようなことをしたい:
$('.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)
これはできますか?