jQuery .each()不按预期迭代字符串数组

时间:2013-01-10 06:38:44

标签: javascript jquery

这样做的:

var tags = ["foobar", "hello", "world"];

$.each(tags, function(tag) {  
  console.log(tag);
});

给我一​​个输出

0    
1   
2

为什么我的输出不是

foobar   
hello    
world

JSFiddle

1 个答案:

答案 0 :(得分:16)

这样做,第一个参数是索引:

$.each(tags, function(index, tag) {  
  console.log(tag);
});