DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> JavaScript Break 和 Continue區別教程
JavaScript Break 和 Continue區別教程
編輯:JavaScript基礎知識     
有兩種可以用在循環中的聲明:break和continue。
JavaScript break 和 continue 聲明
有兩種特殊的聲明可用在循環內部:break和continue。

Break
break命令可以終止循環的運行,然後繼續執行循環之後的代碼(如果循環之後有代碼的話)。
實例:

[Ctrl+A 全選 注:如需引入外部Js需刷新才能執行]
結果:
The number is 0
The number is 1
The number is 2Continue
continue命令會終止當前的循環,然後從下一個值繼續運行。

實例:

[Ctrl+A 全選 注:如需引入外部Js需刷新才能執行]
結果:
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
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved