这样做的:
var tags = ["foobar", "hello", "world"];
$.each(tags, function(tag) {
console.log(tag);
});
给我一个输出
0
1
2
为什么我的输出不是
foobar
hello
world
答案 0 :(得分:16)
这样做,第一个参数是索引:
$.each(tags, function(index, tag) {
console.log(tag);
});