当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JS Break 循环

JavaScript
JS 介绍
JS 怎样使用
JS 在哪使用
JS 变量
JS If...Else
JS Switch
JS 操作符
JS Popup Boxes
JS 函数
JS For 循环
JS While 循环
JS Break 循环
JS For...In
JS 事件
JS Try...Catch
JS Throw
JS onerror
JS 特殊字符
JS Guidelines
JS 对象介绍

JavaScript 中的 JS Break 循环


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 1048 ::
收藏到网摘: n/a

There are two special statements that can be used inside loops: break and continue.
break和continue是两个用在内部循环的特殊语句。


Examples
举例

Break statement
Use the break statement to break the loop.
使用break语句跳出循环

Continue statement
Use the continue statement to break the current loop and continue with the next value.
用continue语句来跳出当前的循环继续下面的值


JavaScript break and continue Statements
JS的break和continue语句

There are two special statements that can be used inside loops: break and continue.
break和continue是两个用在内部循环的特殊语句。(和第一句重复了-_-)

Break
跳出(也可以理解为离开)

The break command will break the loop and continue executing the code that follows after the loop (if any).
break命令会离开当前的循环并接着开始执行下面的循环(如果有的话)

Example
例子

<html>
<body>
<script type="text/javascript">
var i=0
for (i=0;i<=10;i++)
{
if (i==3){break}
document.write("The number is " + i)
document.write("<br />")
}
</script>
</body>
</html>

Result
结果

The number is 0
The number is 1
The number is 2

Continue
继续

The continue command will break the current loop and continue with the next value.
continue命令会跳出当前的循环并继续下面的值

Example
例子

<html>
<body>
<script type="text/javascript">
var i=0
for (i=0;i<=10;i++)
{
if (i==3){continue}
document.write("The number is " + i)
document.write("<br />")
}
</script>
</body>
</html>

Result
结果

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

评论 (0) All

登陆 | 还没注册?