首頁 > web前端 > js教程 > 主體

JavaScript基礎之while迴圈與do while迴圈用法實例詳解

伊谢尔伦
發布: 2017-07-21 14:01:54
原創
3520 人瀏覽過

 在寫一個程式時,可能有一種情況,當你需要一遍又一遍的執行一些操作。在這樣的情況下,則需要寫入循環語句,以減少程式碼的數量。

JavaScript支援所有必要的循環,以協助您在所有程式設計的步驟。

 while 循環

在JavaScript中最基本的循環是while循環


while (expression){
  Statement(s) to be executed if expression is true
}
登入後複製

while循環的目的是為了重複執行語句或程式碼區塊(只要表達式為true)。一旦表達式為假,則循環將被退出。

下面的範例說明了一個基本的while循環:


<script type="text/javascript">
<!--
var count = 0;
document.write("Starting Loop" + "<br />");
while (count < 10){
 document.write("Current Count : " + count + "<br />");
 count++;
}
document.write("Loop stopped!");
//-->
</script>
登入後複製

這將產生以下結果:


##

Starting Loop
Current Count : 0
Current Count : 1
Current Count : 2
Current Count : 3
Current Count : 4
Current Count : 5
Current Count : 6
Current Count : 7
Current Count : 8
Current Count : 9
Loop stopped!
登入後複製

do...while 循環:

do...while loop 類似while循環,不同之處在於條件檢查發生在循環的末端。這意味著,在循環將總是至少執行一次,即使條件為假。

語法


do{
  Statement(s) to be executed;
} while (expression);
登入後複製

注意在do... while迴圈的末端使用分號。

範例:

如在上面的範例中寫一個使用do... while循環程式。


<script type="text/javascript">
<!--
var count = 0;
document.write("Starting Loop" + "<br />");
do{
 document.write("Current Count : " + count + "<br />");
 count++;
}while (count < 0);
document.write("Loop stopped!");
//-->
</script>
登入後複製

這將產生以下結果:


Starting Loop
Current Count : 0
Loop stopped!
登入後複製

以上是JavaScript基礎之while迴圈與do while迴圈用法實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板