我在下面有这个选择器,忽略了li
类<{1}}的任何show-all-boxes
$('.boxes li:not([class="show-all-boxes"]) input:checkbox')
添加多个要被选择器忽略的类的最佳方法是什么?我认为这样的一个例子可行但不是:
$('.boxes li:not([class="show-all-boxes, show-all-circles, show-all-triangles"]) input:checkbox')
答案 0 :(得分:80)
:not选择器可以将多个CSS选择器作为参数(http://api.jquery.com/not-selector)。例如。
$('div:not(.a,.b)').empty()
答案 1 :(得分:5)
试试这个:
$('.boxes li').not(".show-all-boxes, .show-all-circles, .show-all-triangles").find('input:checkbox')