如何在 JavaScript 中给块标签?
块语句将零个或多个语句分组。在 JavaScript 以外的语言中,它被称为复合语句。
语法
以下是语法:
{ //List of statements }
要给块添加标签,请使用以下语法:
Identifier_for_label: { StatementList }
让我们使用它来编写带有 break 语句的代码。你可以尝试运行以下代码,使用标签来控制带有 break 语句语句流
示例
<html> <body> <script> document.write("Entering the loop!<br /> "); outerloop: // This is the label name for (var i = 0; i < 5; i++) { document.write("Outerloop: " + i + "<br />"); innerloop: for (var j = 0; j < 5; j++) { if (j > 3 ) break ; // Quit the innermost loop if (i == 2) break innerloop; // Do the same thing if (i == 4) break outerloop; // Quit the outer loop document.write("Innerloop: " + j + " <br />"); } } document.write("Exiting the loop!<br /> "); </script> </body> </html>
广告