我有一个包含5个项目的数组。
我知道是否要逐步完成我可以使用的所有5个项目:
$.each(response.data.items, function(i,data)
{
// code
}
但是,我如何才能选择单步执行数组中的2
和4
项,仍在上面应用相同的// code
?
即。在伪代码中,这将是for items 2 and 4 do: this
。
答案 0 :(得分:4)
您可以遍历所需的索引数组:
$.each([2, 4], function(i)
{
var data = response.data.items[i];
// code
}
答案 1 :(得分:0)
for(i=2; i < response.data.items.length; i+=2){ // code }
如果您想访问特定索引中的项目,为什么不使用array[i]
?