ready
论坛版主
论坛版主
  • UID24
  • 粉丝0
  • 关注0
  • 发帖数403
  • 社区居民
  • 忠实会员
  • 原创写手
阅读:5683回复:0

JavaScript While 循环

楼主#
更多 发布于:2018-08-10 20:32

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
游客


返回顶部