|
阅读:8440回复:0
JavaScript While 循环while 循环 While 循环会在指定条件为真时循环执行代码块。 语法 while (条件) { 需要执行的代码 } 实例 <!DOCTYPE html>
<html>
<body>
<p>点击下面的按钮,只要 i 小于 5 就一直循环代码块。</p>
<button onclick="myFunction()">点击这里</button>
<p id="demo"></p>
<script>
function myFunction()
{
var x="",i=0;
while (i<5)
{
x=x + "The number is " + i + "";
i++;
}
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>
结果: 点击下面的按钮,只要 i 小于 5 就一直循环代码块。点击这里 The number is 0 The number is 1 The number is 2 The number is 3 The number is 4 |
|