gpt4 book ai didi

jquery - 使用 jQuery 验证单选按钮

转载 作者:行者123 更新时间:2023-12-03 22:53:40 24 4
gpt4 key购买 nike

在我的表单上,我有一组单选按钮。这是标记:

<div class="optionHolder">
<p class="optionName">Format</p>
<div class="option checked">
<input type="radio" name="fileType" value="avi" />
<img src="images/avi.png" alt="" />
<label>AVI</label>
</div>
<div class="option">
<input type="radio" name="fileType" value="mov" />
<img src="images/mov.png" alt="" />
<label>MOV</label>
</div>
<div class="option">
<input type="radio" name="fileType" value="mp4" />
<img src="images/mp4.png" alt="" />
<label>MP4</label>
</div>
<div class="option">
<input type="radio" name="fileType" value="mp3" />
<img src="images/mp3.png" alt="" />
<label>MP3</label>
</div>
</div>

提交表单后,我想检查其中之一是否已选中。解决这个问题的最佳方法是什么?我正在考虑循环遍历它们,并设置一个标志来设置是否检查其中一个,然后在循环后检查该标志,如果为 false 则抛出错误。

感谢任何帮助,干杯。

最佳答案

您可以使用lengthequal attribute selector:checked过滤器选择器如下所示:

if ($("input[name='fileType']:checked").length > 0){
// one ore more checkboxes are checked
}
else{
// no checkboxes are checked
}

关于jquery - 使用 jQuery 验证单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3780040/

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