JS終止跳出循環(huán)(JavaScript Break 與 Continue)
當(dāng)前位置:點(diǎn)晴教程→知識管理交流
→『 技術(shù)文檔交流 』
break和continue是兩個用在內(nèi)部循環(huán)的特殊語句。
使用break語句跳出循環(huán); 用continue語句來跳出當(dāng)前的循環(huán)繼續(xù)下面的值。 Break 跳出(也可以理解為離開) break命令會離開當(dāng)前的循環(huán)并接著開始執(zhí)行下面的程序。 例子: [code] [/code] 結(jié)果: The number is 0 The number is 1 The number is 2 Continue 繼續(xù) continue命令會跳出當(dāng)前的循環(huán)并繼續(xù)下面的值 [code] [/code] 結(jié)果 The number is 0 The number is 1 The number is 2 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 該文章在 2011/2/21 14:41:55 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |