如何使用:not selector忽略多个类?

我在下面的select器中忽略了类show-all-boxes任何li

 $('.boxes li:not([class="show-all-boxes"]) input:checkbox') 

添加多个要被select器忽略的类的最佳方法是什么? 我认为这样做的一个例子,但它并不是:

 $('.boxes li:not([class="show-all-boxes, show-all-circles, show-all-triangles"]) input:checkbox') 

The:not selector可以将多个CSSselect器作为参数( http://api.jquery.com/not-selector )。 例如

 $('div:not(.a,.b)').empty() 

http://jsfiddle.net/HFfcP/

尝试这个 :

 $('.boxes li').not(".show-all-boxes, .show-all-circles, .show-all-triangles").find('input:checkbox')