gpt4 book ai didi

jQuery .each() 与数组

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

基本上,我试图收集具有特定类的每个元素的 ID,并将这些 ID 放入一个数组中。我正在使用 jQuery 1.4.1 并尝试使用 .each(),但并不真正理解它或如何将数组传递出函数。

$('a#submitarray').click(function(){

var datearray = new Array();

$('.selected').each(function(){
datearray.push($(this).attr('id'));
});

// AJAX code to send datearray to process.php file

});

我确信我还很遥远,因为我在这方面还很陌生,所以任何建议帮助都会很棒。谢谢!

最佳答案

您也可以使用map():

$('a#submitarray').click(function(){

var datearray = $('selected').map(function(_, elem) {
return elem.id;
}).get(); // edited to add ".get()" at the end; thanks @patrick
// ajax

});

map() 方法将每个索引(我的示例未使用)和元素传递到给定函数中,并根据返回值为您构建一个数组。

关于jQuery .each() 与数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3008089/

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