gpt4 book ai didi

javascript - jQuery .each() 没有按预期迭代字符串数组

转载 作者:数据小太阳 更新时间:2023-10-29 04:27:53 26 4
gpt4 key购买 nike

正在做:

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

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

给我输出

0    
1
2

为什么我的输出不是

foobar   
hello
world

JSFiddle

最佳答案

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

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

关于javascript - jQuery .each() 没有按预期迭代字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14252151/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com