gpt4 book ai didi

javascript - each() with counter - 常量名称

转载 作者:行者123 更新时间:2023-11-30 19:27:19 26 4
gpt4 key购买 nike

我正在尝试遍历一些 HTML 元素,提取内容并将它们设置为具有索引号的常量值,如下所示...

jQuery('.myitems').each(function (index) {

const myitem + index = [jQuery(this).text()];
console.log(myitem + index);

});

这行不通,谁能告诉我正确的实现方法?

最佳答案

您可以使用对象而不是计数。你的代码将被破坏。请参阅以下解决方案。

jQuery('.myitems').each(function (index) {
const count = {}
count[myitem + index] = [jQuery(this).text()];
console.log(count[myitem + index]);

});

关于javascript - each() with counter - 常量名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56770450/

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