JS终止跳出循环(JavaScript Break 与 Continue)
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
break和continue是两个用在内部循环的特殊语句。
使用break语句跳出循环; 用continue语句来跳出当前的循环继续下面的值。 Break 跳出(也可以理解为离开) break命令会离开当前的循环并接着开始执行下面的程序。 例子: [code] [/code] 结果: The number is 0 The number is 1 The number is 2 Continue 继续 continue命令会跳出当前的循环并继续下面的值 [code] [/code] 结果 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 编辑过 |
关键字查询
相关文章
正在查询... |