JavaScript For Loop

來源:互聯網
上載者:User

在JavaScript中迴圈JavaScript For Loop使用執行相同的代碼塊指定的次數或在指定的條件是真實的。


範例
對for loop  
如何寫loop 。使用的閉環運行相同的代碼塊指定的次數。

<html>
<body>

<script type="text/javascript">
for (i = 0; i <= 5; i++)
{
document.write(http://www.111cn.net + i);
document.write("<br />");
}
</script>

</body>
</html>

通過迴圈的HTML標題
如何使用的迴圈迴路通過不同的HTML標題。


<script type="text/javascript">
for (i = 1; i <= 6; i++)
{
document.write("<h" + i + ">This is header " + i);
document.write("</h" + i + ">");
}
</script>

JavaScript的迴圈
往往當你寫代碼,你想同樣的代碼塊運行一遍又一遍連勝。反而增加了幾乎相等線指令碼,我們可以用迴圈來執行這樣的任務。

在JavaScript中有兩種不同類型的迴圈:

為-迴圈通過代碼塊指定的次數
而-迴圈通過代碼塊,而指定的條件是真正的



for loop
在for迴圈是用來當你事Crowdsourced Security Testing道有多少次的指令碼應該運行。

文法

for (var=startvalue;var<=endvalue;var=var+increment) {    www.111cn.net/wy/yw.html
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.