gpt4 book ai didi

jquery - jquery 多个选择器

转载 作者:行者123 更新时间:2023-12-01 05:08:52 24 4
gpt4 key购买 nike

这个:

$('input.people').attr('checked', false).filter('[name=toddS]').attr('checked', true);

将选中一个包含人员类别和名称 toddS 的复选框,同时取消选中所有其他复选框。

如何向过滤器添加其他名称?我尝试了几种不同的组合,但没有任何效果。这就是我所拥有的:

$('input.people').attr('checked', false).filter('[name=toddS], [name=gwenD]').attr('checked', true);

最佳答案

您可以将函数传递给 .attr() ,像这样:

$('input.people').attr('checked', function() {
return this.name == 'toddS' || this.name == 'gwenD';
});

如果您稍后需要添加更多内容,您可以使用适用于更多值的内容,例如 $.inArray() ,像这样:

$('input.people').attr('checked', function() {
return $.inArray(this.name, ['toddS', 'gwenD']) != -1;
});

关于jquery - jquery 多个选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3489809/

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