首页 > 语言 > JavaScript > 正文

详解JavaScript中循环控制语句的用法

2024-05-06 16:21:16
字体:
来源:转载
供稿:网友

这篇文章主要介绍了详解JavaScript中循环控制语句的用法,包括break语句和continue语句的使用方法,需要的朋友可以参考下

JavaScript提供完全控制来处理循环和switch语句。可能有一种情况,当你需要退出一个循环,但未达到其底部。也可能有一种情况,当要跳过的码块的一部分,并直接开始下一个迭代。

为了处理这些情况下,JavaScript提供了break和continue语句。这些语句是用来马上退出任何循环或启动循环的下一次迭代。

break 语句:

break语句,这是简单地用switch语句介绍,用于提前退出循环,打破封闭的花括号。

例子:

这个例子说明了如何使用break语句同while循环。请注意循环打破了初期由x到5,document.write(..) 语句的正下方,以右大括号:

 

 
  1. <script type="text/javascript"
  2. <!-- 
  3. var x = 1; 
  4. document.write("Entering the loop<br /> "); 
  5. while (x < 20) 
  6. if (x == 5){  
  7. break// breaks out of loop completely 
  8. x = x + 1; 
  9. document.write( x + "<br />"); 
  10. document.write("Exiting the loop!<br /> "); 
  11. //--> 
  12. </script> 

这将产生以下结果:

 

 
  1. Entering the loop 
  2. Exiting the loop! 

我们已经看到break语句在switch语句中使用。

continue 语句:

continue语句告诉解释器立即启动循环的下一次迭代,并跳过其余的代码块。

当遇到continue语句,程序流程将立即转移到循环检查表达式,如果条件保持真,那么就开始下一个迭代,否则控制退出循环。

例子:

这个例子说明使用continue语句同while循环。请注意continue语句用于跳过打印时指数变量x到达5:

 

 
  1. <script type="text/javascript"
  2. <!-- 
  3. var x = 1; 
  4. document.write("Entering the loop<br /> "); 
  5. while (x < 10) 
  6. x = x + 1; 
  7. if (x == 5){  
  8. continue// skill rest of the loop body 
  9. document.write( x + "<br />"); 
  10. document.write("Exiting the loop!<br /> "); 
  11. //--> 
  12. </script> 

这将产生以下结果:

 

 
  1. Entering the loop 
  2. 10 
  3. Exiting the loop! 

使用标签来控制流程:

从JavaScript1.2开始,标签可以与break及continue使用,继续更精确地控制流程。

标签是简单的标识符随后被施加到一个语句或代码块冒号。看到两个不同的例子来了解标签使用突破,并继续。

注:换行符是不是继续还是分手声明,其标签名称之间允许的。此外,不应该有一个标签名称和相关联的回路之间的任何其它声明。

实例1:

 

 
  1. <script type="text/javascript"
  2. <!-- 
  3. document.write("Entering the loop!<br /> "); 
  4. outerloop: // This is the label name 
  5. for (var i = 0; i < 5; i++) 
  6. document.write("Outerloop: " + i + "<br />"); 
  7. innerloop: 
  8. for (var j = 0; j < 5; j++) 
  9. if (j > 3 ) break ; // Quit the innermost loop 
  10. if (i == 2) break innerloop; // Do the same thing 
  11. if (i == 4) break outerloop; // Quit the outer loop 
  12. document.write("Innerloop: " + j + " <br />"); 
  13. document.write("Exiting the loop!<br /> "); 
  14. //--> 
  15. </script> 

这将产生以下结果:

 

 
  1. Entering the loop! 
  2. Outerloop: 0 
  3. Innerloop: 0  
  4. Innerloop: 1  
  5. Innerloop: 2  
  6. Innerloop: 3  
  7. Outerloop: 1 
  8. Innerloop: 0  
  9. Innerloop: 1  
  10. Innerloop: 2  
  11. Innerloop: 3  
  12. Outerloop: 2 
  13. Outerloop: 3 
  14. Innerloop: 0  
  15. Innerloop: 1  
  16. Innerloop: 2  
  17. Innerloop: 3  
  18. Outerloop: 4 
  19. Exiting the loop! 

实例2:

 

 
  1. <script type="text/javascript"
  2. <!-- 
  3. document.write("Entering the loop!<br /> "); 
  4. outerloop: // This is the label name 
  5. for (var i = 0; i < 3; i++) 
  6. document.write("Outerloop: " + i + "<br />"); 
  7. for (var j = 0; j < 5; j++) 
  8. if (j == 3){ 
  9. continue outerloop; 
  10. document.write("Innerloop: " + j + "<br />"); 
  11. }  
  12. document.write("Exiting the loop!<br /> "); 
  13. //--> 
  14. </script> 

这将产生以下结果:

 

 
  1. Entering the loop! 
  2. Outerloop: 0 
  3. Innerloop: 0 
  4. Innerloop: 1 
  5. Innerloop: 2 
  6. Outerloop: 1 
  7. Innerloop: 0 
  8. Innerloop: 1 
  9. Innerloop: 2 
  10. Outerloop: 2 
  11. Innerloop: 0 
  12. Innerloop: 1 
  13. Innerloop: 2 
  14. Exiting the loop! 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选