gpt4 book ai didi

jquery如何过滤表单中未选中的复选框

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

在我的页面中,表单中没有复选框。因为我要检查其中的一些,所以我需要过滤其余的复选框,并需要在这些复选框上添加单独的事件。我确实喜欢这样:

var userLocales =   $('input[type="checkbox"]', "form").filter(function(){ 
return $(this).val() === value["name"]
}).prop("checked",true);

$(userLocales).click(function(){
$(this).parent().toggleClass("red");
})

$('input:checkbox:not("checked")', "form").not(userLocales).click(function(){
$(this).parent().addClass("green"); //this is not working.. it works even for not selected elements..
})

但不起作用..有什么正确的方法可以完成这个任务吗..?

最佳答案

鉴于您首先知道如何获取复选框,请考虑:

checkboxes$.filter(':checked')....

或者:

checkboxes$.filter(':not(:checked)')....

关于jquery如何过滤表单中未选中的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17334936/

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