gpt4 book ai didi

javascript - 将来自 jquery 选择器的值存储在数组或哈希中以供重用

转载 作者:行者123 更新时间:2023-12-02 19:58:28 25 4
gpt4 key购买 nike

如何将值存储到数组或哈希中以便在不添加单独标识符的情况下单独调用?

var myarray = [];
$(".express").each(function () {
myarray.push($(this).text());
});

function flashEXPRESS() {
$(".express").each(function () {
if ($(this).text() == 'NEW') { $(this).text() = myarray[???]; }
else { $(this).text() == 'NEW'}
});
}
var flashEXPRESSid = 0;
flashEXPRESSid = setInterval("flashEXPRESS()",1000);

最佳答案

each 的回调为您提供索引作为第一个参数。这可能就是您所需要的。

$(".express").each(function (index) {
if ($(this).text() == 'NEW') { $(this).text() = myarray[index]; }
else { $(this).text() == 'NEW'}
});

关于javascript - 将来自 jquery 选择器的值存储在数组或哈希中以供重用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8328118/

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