JavaScript 中的 continue 语句是什么?
javascriptweb developmentfront end technology
continue 语句告诉解释器立即开始循环的下一次迭代并跳过剩余的代码块。break 语句用于提前退出循环,跳出封闭的花括号。
遇到 continue 语句时,程序流立即移动到循环检查表达式,如果条件保持为真,则开始下一次迭代,否则,控制退出循环。
您可以尝试运行以下命令来了解如何在 JavaScript 中使用 continue 语句。此示例说明了在 while 循环中使用 continue 语句。请注意如何使用 continue 语句在变量 x 中保存的索引达到 5 时跳过打印 −
示例
<html> <body> <script> var x = 1; document.write("进入循环<br /> "); while (x < 10) { x = x+ 1; if (x== 5) { continue; // 跳过循环体的剩余部分 } document.write( x + "<br />"); } document.write("退出循环!<br /> "); </script> </body> </html>