gpt4 book ai didi

javascript - 如何从循环中获取特定值

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

我想从一个循环中获取一个特定的值,比如以数组的形式。用下面的例子

var text = "";

for(var i = 0; i < 10; i++) {
if (i === 3) continue;
text += "The number is " + i + "<br>";
}

document.getElementById("demo").innerHTML = text;

结果:

The number is 0
The number is 1
The number is 2
The number is 4
The number is 5
The number is 6
The number is 7
The number is 8
The number is 9

但我需要从循环中获取特定数字,例如:

text += "The 5th number is " + i[5] + "<br>";

i[5] 的结果未定义。我怎样才能正确地做到这一点?

最佳答案

text是一个简单的string而不是数组,这就是为什么您无法使用 array[index] 访问的原因.你最好使用数组或者

你可以简单地split你的字符串 <br> ,这会给你一个数组。现在您将能够使用 arr[index]在上面

喜欢

var text = "";
var i;
for (i = 0; i < 10; i++) {
if (i === 3) { continue; }
text += "The number is " + i + "<br>";
};

console.log("5th number is "+text.split("<br>")[4])

关于javascript - 如何从循环中获取特定值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50347776/

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