萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> JavaScript中for循環的使用詳解

JavaScript中for循環的使用詳解

   這篇文章主要介紹了JavaScript中for循環的使用詳解,是JS入門學習中的基礎知識,需要的朋友可以參考下

  我們已經看到,while循環有不同變種。本章將介紹另一種流行的循環叫做for循環。

  for 循環

  for循環是循環最緊湊的形式,並包含有以下三個重要部分組成:

  循環初始化計數器的初始值。初始化語句執行循環開始之前。

  測試語句,將測試如果給定的條件是真還是假。如果條件為真,那麼將要執行的循環中給定的代碼,否則循環會退出來。

  循環語句,可以增加或減少計數器。

  可以把所有的三個部分中的一行用分號隔開。

  語法

  ?

1 2 3 for (initialization; test condition; iteration statement){ Statement(s) to be executed if test condition is true }

  例子:

  下面的例子說明一個基本的for循環:

  ?

1 2 3 4 5 6 7 8 9 10 11 <script type="text/javascript"> <!-- var count; document.write("Starting Loop" + "<br />"); for(count = 0; count < 10; count++){ document.write("Current Count : " + count ); document.write("<br />"); } document.write("Loop stopped!"); //--> </script>

  這將產生以下結果,它類似於while循環:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 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!
copyright © 萬盛學電腦網 all rights reserved