gpt4 book ai didi

jquery - 在 jquery 中检查至少一个复选框验证

转载 作者:行者123 更新时间:2023-12-01 06:19:51 26 4
gpt4 key购买 nike

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

<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>

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

最佳答案

$("#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

关于jquery - 在 jquery 中检查至少一个复选框验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13097747/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com