0
<!DOCTYPE html>
<html>
<body>

<p>Click the button to loop through a block of code five times.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>

<script>
function myFunction() {
  var x = "";
  for ( var i = 0; i < 5; i++ ) {
      x = x + "The number is " + i + "<br>";
  }
  document.getElementById("demo").innerHTML=x;
}
</script>

</body>
</html>

我了解它返回的内容,但我不了解每个语句之前的 x。

x = x + "The number is " + i + "<br>";
4

2 回答 2

2

x 是一个将在循环中增长的变量。

该行:

x = x + "The number is " + i + <br>

只需将“数字为” + i + 行尾这一行附加到 x 的当前值。

将此行视为:

var y = x + "The number is " + i + <br>
x = y

在循环结束时,x 值得:

“数字是0
数字是1
数字是2
数字是3
数字是4

如果不是 x = "",而是 x = "Hello,",那么最终结果将是:

“你好,号码是0
号码是1
号码是2
号码是3
号码是4

于 2013-02-03T15:59:34.653 回答
0
x = x + "The number is " + i + "<br>";

附加到指定文本的当前值并将其x存储回 x。

于 2013-02-03T15:59:48.720 回答