熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> C編程 >> 正文

JavaScript中Break和Continue

2022-06-13   來源: C編程 

  JavaScript break 和 continue 語句

  有兩種特殊的語句可用在循環內部break 和 continue

  Break

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

  實例

<html> 
<body> 
<script type=text/javascript
var i= 
for (i=;i<=;i++) 

if (i==){break} 
documentwrite(The number is  + i) 
documentwrite(<br />

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

  結果

  The number is

  The number is

  The number is

      Continue

  continue命令會終止當前的循環然後從下一個值繼續運行

  實例

 
<html> 
<body> 
<script type=text/javascript
var i= 
for (i=;i<=;i++) 

if (i==){continue} 
documentwrite(The number is  + i) 
documentwrite(<br />

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

  結果:

  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


From:http://tw.wingwit.com/Article/program/c/201404/30454.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.