是否在前后检查了ID匹配模式的复选框

时间:2013-11-04 08:51:25

标签: jquery checkbox

我有一个带复选框的表单。相关复选框的ID属性以模式stop_开头,以下划线和数字结尾。

所以它可能是例如

stop_bla_4
stop_blu_4

但不是

stop_bla_5
stop_blz_5

如果没有选中组中的复选框,我将如何测试。

即。在上述示例中以stop_开头并以_4结尾而忽略其他示例的那些。

1 个答案:

答案 0 :(得分:3)

这可以帮到你:

// None checked
$('input[type="checkbox"][id^="stop_"][id$="_4"]:checked').length == 0

jQuery参考

选择器“属性以”http://api.jquery.com/attribute-starts-with-selector/

开头

选择器“属性以”结尾:http://api.jquery.com/attribute-ends-with-selector/