我想做这样的事情:
$('.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)
这可以做到吗?