1

我有一些复选框,如下所示:

<form name="submit-form" name="submit-form">
<label>property1</label>
<input type="checkbox" name="property1"><br>
<label>property2</label>
<input type="checkbox" name="property2"><br>
<label>property3</label>
<input type="checkbox" name="property3"><br>
<label>property4</label>
<input type="checkbox" name="property4"><br>
<label>property5</label>
<input type="checkbox" name="property5"><br>
<label>property6</label>
<input type="checkbox" name="property6"><br>
<input type="submit">
</form>

我想一次验证至少一个复选框。请帮助我。提前致谢

4

4 回答 4

8
$("#YourbuttonId").click(function(){
    if($('#YourTableId').find('input[type=checkbox]:checked').length == 0)
    {
        alert('Please select atleast one checkbox');
    }
});

更新:

我看到了你的代码,看起来你正在使用 jquery 验证插件,在这种情况下这篇文章会帮助你

并尝试为您的复选框赋予组中存在的相同名称

http://forum.jquery.com/topic/check-that-at-least-1-checkbox-is-checked-using-jquery-validate-plugin

于 2012-10-27T06:15:06.110 回答
1

我会将它们全部包装在一个带有 div 的容器中,以便于选择,然后您可以使用:

if($('#wrapperID input:checked').length > 0) {
    'at least one is checked
}
于 2012-10-27T06:16:04.440 回答
1

试试这个

$('form').submit(function(e) {
    if($("input:checked").length == 0){
    alert('please checked atleast one');
    }
});​
于 2012-10-27T06:21:08.937 回答
0

请参阅此演示: http: //jsfiddle.net/RGUTv/ 您的特定案例演示:http: //jsfiddle.net/J98Ua/

我在这里的旧回复:验证至少一个复选框

希望休息能满足需要!:)

代码

$(document).ready(function() {
    $('#my-form').submit(function() {
        amIChecked = false;
        $('input[type="checkbox"]').each(function() {
            if (this.checked) {
                amIChecked = true;
            }
        });
        if (amIChecked) {
            alert('atleast one box is checked');
        }
        else {
            alert('please check one checkbox!');
        }
        return false;
    });
});​
于 2012-10-27T06:36:16.250 回答