如何在JavaScript中使用带有break语句的标签?

从JavaScript 1.2开始,标签可以与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>