亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JavaScript中循環的實現方法

發布時間:2020-12-03 09:51:53 來源:億速云 閱讀:131 作者:小新 欄目:web開發

這篇文章給大家分享的是有關JavaScript中循環的實現方法的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

for 循環

在腳本的運行次數已確定的情況下使用 for 循環。

語法:

for (變量=開始值;變量<=結束值;變量=變量+步進值) 
{
    需執行的代碼
}

實例:

解釋:下面的例子定義了一個循環程序,這個程序中 i 的起始值為 0。每執行一次循環,i 的值就會累加一次 1,循環會一直運行下去,直到 i 等于 10 為止。

注釋:步進值可以為負。如果步進值為負,需要調整 for 聲明中的比較運算符。

<html>
<body>

<script>
var i=0
for (i=0;i<=10;i++)
{
document.write("The number is " + i)
document.write("<br />")
}

</script>

</body>
</html>

結果:

The number is 0
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5
The number is 6
The number is 7
The number is 8
The number is 9
The number is 10

while 循環

while 循環用于在指定條件為 true 時循環執行代碼。

語法:

while
(變量<=結束值)
{
    需執行的代碼
}

注意:除了<=,還可以使用其他的比較運算符。

實例:

解釋:下面的例子定義了一個循環程序,這個循環程序的參數 i 的起始值為 0。該程序會反復運行,直到 i 大于 10 為止。每次運行i的值會增加 1。

<html>
<body>
<script>
var i=0
while (i<=10)
{
document.write("The number is " + i)
document.write("<br />")
i=i+1
}

</script>
</body>
</html>

結果:

The number is 0
The number is 1
The number is 2
The number is 3
The number is 4
The number is 5
The number is 6
The number is 7
The number is 8
The number is 9
The number is 10

do...while 循環

do...while 循環是 while 循環的變種。該循環程序在初次運行時會首先執行一遍其中的代碼,然后當指定的條件為 true 時,它會繼續這個循環。所以可以這么說,do...while 循環為執行至少一遍其中的代碼,即使條件為 false,因為其中的代碼執行后才會進行條件驗證。

語法:

do
{
    需執行的代碼
}
while
(變量<=結束值)

實例:

<html>
<body>
<script>
var i=0
do 
{
document.write("The number is " + i)
document.write("<br />")
i=i+1
}
while (i<0)

</script>
</body>
</html>

結果:

The number is 0

感謝各位的閱讀!關于JavaScript中循環的實現方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

苍梧县| 亳州市| 江西省| 牟定县| 新津县| 新邵县| 霸州市| 油尖旺区| 阿坝县| 海南省| 四平市| 白玉县| 沁源县| 巫溪县| 澎湖县| 全椒县| 两当县| 壶关县| 麻阳| 太谷县| 陈巴尔虎旗| 富平县| 乌海市| 二连浩特市| 德清县| 黎城县| 哈密市| 德令哈市| 博乐市| 竹山县| 七台河市| 定襄县| 措勤县| 花垣县| 房产| 玉林市| 霍林郭勒市| 同心县| 内乡县| 柏乡县| 聊城市|