中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

四平市| 湛江市| 邓州市| 庆阳市| 馆陶县| 旬阳县| 博兴县| 黑龙江省| 延川县| 东方市| 盐边县| 绥芬河市| 清原| 宝山区| 西林县| 奎屯市| 会昌县| 平南县| 兴仁县| 科技| 高阳县| 峡江县| 新田县| 永州市| 竹溪县| 韶山市| 临沭县| 遂川县| 望城县| 泰来县| 赤城县| 新平| 轮台县| 会东县| 阿荣旗| 岳普湖县| 南丹县| 东丰县| 新化县| 库尔勒市| 漳浦县|