gpt4 book ai didi

Jquery 组 radio 选择

转载 作者:行者123 更新时间:2023-12-01 04:49:40 25 4
gpt4 key购买 nike

我有这样的单选按钮

<input name="show[1]" type="radio" value="1" /> Show<br>
<input name="show[1]" type="radio" value="0" /> Hide<br>

<input name="show[2]" type="radio" value="1" /> Show<br>
<input name="show[2]" type="radio" value="0" /> Hide<br>
...
...
...
<input name="show[n]" type="radio" value="1" /> Show<br>
<input name="show[n]" type="radio" value="0" /> Hide<br>

这里 n 的长度可以变化。

这是表单提交的一部分。在 jquery 中,我想确保应选择每组中的一个单选按钮。我怎样才能做到这一点

最佳答案

试试这个:

$(':radio').each(function() {
nam = $(this).attr('name');
if (submitme && !$(':radio[name="'+nam+'"]:checked').length) {
alert(nam+' group not checked');
submitme = false;
}
});

<强> Working Demo

关于Jquery 组 radio 选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22603467/

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