gpt4 book ai didi

jquery - 如何在 jquery 中将项目数组循环两个并放入另一个数组?

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

这是我制作数组的方法:

var data = [];
$('tbody > tr','#iddetails').each(function(){
var idtype = $('.input-IDtype',this).val();
var idnumber = $('.input-IDnumber',this).val();
data.push(idtype, idnumber);
});

输出:

data = [1,2,3,4,5,6]

我希望我的 newdata 数组应该像这样的输出:

newdata = [

[0] 1,2

[1] 3,4

[2] 5,6

]

如何使我的 newdata 数组看起来像这样?

最佳答案

实际上,对原始代码进行简单修改就可以生成您期望的新数组:

var data = [];

$('tbody > tr','#iddetails').each(function()
{
var idtype = $('.input-IDtype',this).val();
var idnumber = $('.input-IDnumber',this).val();

// Note here we push a new array with the pair [idtype, idnumber]
// into data array.
data.push([idtype, idnumber]);
});

关于jquery - 如何在 jquery 中将项目数组循环两个并放入另一个数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54682116/

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