- ·上一篇文章:Win10预览版14316开启Linux Bash命令行教程
- ·下一篇文章:JavaScript教程之在网页中的简单应用
JavaScript教程之Break和Continue
JavaScript教程之Break和Continue 有两种特殊的语句可用在循环内部:break 和 continue。 Break break命令可以终止循环的运行,然后继续执行循环之后的代码(如果循环之后有代码的话)。 实例: 《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》 结果: The number is 0 The number is 1 The number is 2 Continue continue命令会终止当前的循环,然后从下一个值继续运行。 实例: 《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》
JavaScript教程之Break和Continue