我试图做到这一点:
myArray = [
[value1,value2,value3],
[value1,value2,value3],
[value1,value2,value3]
];
使用jQuery中的each()函数,但即使看到网络上的示例,我仍然陷入困境:/帮助。
$('myRepeatingTag').each(function(){
//I want to increment myArray[] here with many new values/subvalues
});
答案 0 :(得分:0)
正如朋友所说,这里的答案是使用
myArray.push([new_value1, value2, value3])
将新数组存储在主数组中。