我想获得没有特定CSS类的所有表单元素。 例如:
<form>
<div>
<input type="text" class="good"/>
<input type="text" class="good"/>
<input type="text" class="bad"/>
</div>
</form>
我应该使用什么选择器来选择没有'坏'css类的所有元素?
谢谢。
答案 0 :(得分:17)
您可以使用not()过滤器:
$("input").not(".bad")
答案 1 :(得分:8)
答案 2 :(得分:5)
$("input:not(.bad)")