检查提交时是否选中了所有复选框

时间:2015-01-14 21:40:01

标签: javascript jquery checkbox

我有这个:

<fieldset id="booom">
<label><INPUT TYPE="checkbox" NAME="a" VALUE="a">something></label>
<label><INPUT TYPE="checkbox" NAME="b" VALUE="b">something></label>
<label><INPUT TYPE="checkbox" NAME="c" VALUE="c">something></label>
</fieldset>

<input type="button" id="answer" value="submit">

如果来自fieldset&#39; booom&#39;的所有复选框都可以查看jQuery?在提交时未选中?

所以:

if (all checkboxes from parent 'booom' are unchecked) {
alert("something")
}

我发现了很多关于此的帖子,但没有一个带有按钮和警告框的实际简单工作样本:)

谢谢!

1 个答案:

答案 0 :(得分:6)

您可以在选择器中使用:checked修饰符。

if ($("#boom :checkbox:checked").length == 0) {
    alert("You have to check at least one box");
}