如果我想选择所有选中的复选框,我可以这样做。
$('#mydiv input[type=checkbox]:checked')
是否有类似的简单语法让我选择所有未选中的复选框?
答案 0 :(得分:6)
Hiya是的:演示 http://jsfiddle.net/usvrb/
http://api.jquery.com/not-selector/
<强>引用强>
The .not() method will end up providing you with more readable selections than pushing complex selectors or variables into a :not()
选择器过滤器。在大多数情况下,这是一个更好的选择。
希望这有帮助,:)欢呼!
答案 1 :(得分:3)
$('#mydiv input[type=checkbox]:not(:checked)')
答案 2 :(得分:2)
你不会相信。
$('#mydiv input[type=checkbox]').not(':checked')
编辑:Stackoverflow管理,最新的坚果CAPTCHA?今天的每一个答案都要求我输入CAPTCHA代码?