-6ren">
gpt4 book ai didi

javascript - 检查单选按钮是否在 jquery 中被选中

转载 作者:行者123 更新时间:2023-11-30 07:27:04 25 4
gpt4 key购买 nike

 <input type="radio" name="a" />
<input type="radio" name="a" />
<input type="radio" name="b" />
<input type="radio" name="b" />

我想确保 radiobuttonboth group 必须被选中,为此我试过了:

if($("input[type=radio,name=a]:checked").length > 0 && 
$("input[type=radio,name=b]:checked").length > 0)
{
/* do something */
}

但是不工作,谁能告诉我为什么?

最佳答案

    if($("input[type=radio][name=a]:checked").length > 0 &&   
$("input[type=radio][name=b]:checked").length > 0)
{
/* do something */
}

关于javascript - 检查单选按钮是否在 jquery 中被选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10861445/

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