gpt4 book ai didi

javascript - 为什么这个 for 循环不显示在我使用 JavaScript 的 div 中?

转载 作者:行者123 更新时间:2023-11-30 08:36:25 24 4
gpt4 key购买 nike

我想在我的 div 中显示内容,但代码不起作用。请告诉我怎么做。

<!DOCTYPE html>
<html>
<body>
<p id="display"></p>
<script>
var i;
for (i = 0; i < 11; i++) {
var disp = "the number is " + i;
console.log(disp);
}
disp = document.getElementById("display").innerHTML;
</script>
</body>
</html>

如何让循环在我选择的 div 中显示我的变量?我的代码的哪一部分是错误的?请帮忙。

最佳答案

有多个问题

<p id="display"></p>

<script>
var i;

//initialize the value
var disp = '';
for (i = 0; i < 11; i++) {
//concatenate the value of disp so that new value will be added to the previous content other wise the values will be overwritten
disp += "the number is " + i;
console.log(disp);

}

//assign value of disp to the elemet innerHTML
document.getElementById("display").innerHTML = disp;
</script>

关于javascript - 为什么这个 for 循环不显示在我使用 JavaScript 的 div 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30996189/

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