gpt4 book ai didi

jquery - 用于 jQuery 验证的复选框数组选择器

转载 作者:太空宇宙 更新时间:2023-11-04 13:42:21 24 4
gpt4 key购买 nike

我的 HTML:

<input type="checkbox" name="subjects[0]" class="checkbox_array" value="1"  />
<input type="checkbox" name="subjects[1]" class="checkbox_array" value="1" />
<input type="checkbox" name="subjects[2]" class="checkbox_array" value="1" />
<input type="checkbox" name="subjects[3]" class="checkbox_array" value="1" />
<input type="button" id="ss" />

j查询:

$("#ss").click(function(){
if($('input[name=subjects\\[\\]]:checked').length<=0)
{
alert("No radio checked")
}
});

它对我不起作用...使用类 if($('.checkbox_array:checked').length<=0)它工作起来很简单,但我该如何处理输入名称选择器

最佳答案

($('input[name*="subjects"]:checked').length<=0)

会工作...

文档:http://api.jquery.com/attribute-contains-selector/

关于jquery - 用于 jQuery 验证的复选框数组选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19567009/

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