3

如果我想选择所有选中的复选框,我可以这样做。

$('#mydiv input[type=checkbox]:checked')

是否有类似的简单语法可以让我选择所有未选中的复选框?

4

3 回答 3

6

嗨是的: 演示 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()

选择器过滤器。在大多数情况下,这是一个更好的选择。

希望这会有所帮助,:) 干杯!

于 2012-04-14T01:00:39.697 回答
3
 $('#mydiv input[type=checkbox]:not(:checked)')
于 2012-04-14T00:59:47.040 回答
2

你不会相信的。

$('#mydiv input[type=checkbox]').not(':checked')

编辑: Stackoverflow 管理,坚果 CAPTCHA 怎么了?今天的每一个答案都需要我输入验证码?

于 2012-04-14T01:02:31.427 回答