gpt4 book ai didi

javascript - 关于遍历数组的 jQuery 问题

转载 作者:行者123 更新时间:2023-11-29 15:05:39 24 4
gpt4 key购买 nike

我有一个这样的数组:

var gridArray = [ 1,2,0,1,2,3,2,1,2,3,4,4,3,2,2,2,0 ]

我想要一个像这样的 jQuery each() 函数:

$('li.node').each(function() {
loop through the array
var rndTile = the current array digit

$(this).css({ 'background-image': 'url(images/'+arrayDigit+'.jpg' });
});

我该如何实现?

最佳答案

您需要将参数传递给每个回调。

$(gridArray).each(function (i, val) {
// i is the index in this loop.
// val is the value at gridArray[i] in this loop.
});

关于javascript - 关于遍历数组的 jQuery 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3330099/

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