我有:
<div class="group">
<input type="radio" name="myradio" value="1">a
<input type="radio" name="myradio" value="2">b
</div>
<div class="group">
<input type="radio" name="two" value="3">a
<input type="radio" name="two" value="4">b
</div>
<div class="group">
<input type="radio" name="aaa" value="5">a
<input type="radio" name="aaa" value="6">b
</div>
在此示例中,我如何检查是否至少检查了一组?如果没有,那么应该是警报('错误')。我想使用 jQuery。
$(".group").each(function(){
})
但我该如何检查呢?对于我的示例应该是返回错误 - 检查任何输入,但如果我有:
<div class="group">
<input type="radio" name="myradio" value="1">a
<input type="radio" name="myradio" value="2">b
</div>
<div class="group">
<input type="radio" name="two" value="3">a
<input type="radio" name="two" value="4" checked="checked">b
</div>
<div class="group">
<input type="radio" name="aaa" value="5">a
<input type="radio" name="aaa" value="6">b
</div>
对于这个例子是好的 - 检查第二组中的输入。
我该如何验证这一点?