gpt4 book ai didi

jquery - 从 jquery 元素数组中选择 ids

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

通过以下 jquery 语句,我选择一个元素数组:

selectedSupplierIds = $('.supplierListCheckbox:checked');

我需要从这些元素中选择 id。我可以在不创建数组并将 ids 插入 for 循环的情况下执行此操作吗?

最佳答案

您可以使用.map()根据您的对象选择获取任何内容的数组...在这种情况下,您只需要每个对象的 .id 属性,如下所示:

var arr = $('.supplierListCheckbox:checked').map(function() { 
return this.id;
}).get();

关于jquery - 从 jquery 元素数组中选择 ids,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4324123/

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