7
var tags = ["foobar", "hello", "world"];
$.each(tags, function(tag) {
console.log(tag);
});
給我的
0
1
2
輸出爲什麼我的輸出功率不
foobar
hello
world
var tags = ["foobar", "hello", "world"];
$.each(tags, function(tag) {
console.log(tag);
});
給我的
0
1
2
輸出爲什麼我的輸出功率不
foobar
hello
world
在這裏你去http://api.jquery.com/jQuery.each/ –