JavaScript--while

來源:互聯網
上載者:User

標籤:



只要指定條件為 true,迴圈就可以一直執行代碼。
while 迴圈

While 迴圈會在指定條件為真時迴圈執行代碼塊。
文法

while (條件)
  {
  需要執行的代碼
  }

執行個體

本例中的迴圈將繼續運行,只要變數 i 小於 5:

while (i<5)
  {
  x=x + "The number is " + i + "<br>";
  i++;
  }


提示:如果忘記增加條件中所用變數的值,該迴圈永遠不會結束。該可能導致瀏覽器崩潰。
do/while 迴圈

do/while 迴圈是 while 迴圈的變體。該迴圈會執行一次代碼塊,在檢查條件是否為真之前,然後如果條件為真的話,就會重複這個迴圈。
文法

do
  {
  需要執行的代碼
  }
while (條件);

執行個體

下面的例子使用 do/while 迴圈。該迴圈至少會執行一次,即使條件是 false,隱藏代碼塊會在條件被測試前執行:

do
  {
  x=x + "The number is " + i + "<br>";
  i++;
  }
while (i<5);


別忘記增加條件中所用變數的值,否則迴圈永遠不會結束!
比較 for 和 while

如果您已經閱讀了前面那一章關於 for 迴圈的內容,您會發現 while 迴圈與 for 迴圈很像。
for 語句執行個體

本例中的迴圈使用 for 迴圈來顯示 cars 數組中的所有值:

cars=["BMW","Volvo","Saab","Ford"];
var i=0;
for (;cars[i];)
{
document.write(cars[i] + "<br>");
i++;
}

while 語句執行個體

本例中的迴圈使用使用 while 迴圈來顯示 cars 數組中的所有值:

cars=["BMW","Volvo","Saab","Ford"];
var i=0;
while (cars[i])
{
document.write(cars[i] + "<br>");
i++;

}



<!DOCTYPE html>
<html>
<body>
<meta http-equiv="Content-Type" content="text/html charset=utf-8"/>
<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 +"<br>";//將每一次執行的結果輸出
  //document.write(x);
  document.getElementById("demo").innerHTML=x;
  i++;
  }
//document.getElementById("demo").innerHTML=x;
}
</script>

</body>
</html>


JavaScript--while

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.