如何在JavaScript中捕获异常?

要捕获JavaScript中的异常,请使用try …catch…finally。JavaScript实现了try ... catch ... finally构造以及throw运算符来处理异常。

您可以捕获程序员生成的异常和运行时异常,但是不能捕获JavaScript语法错误。

示例

您可以尝试运行以下代码以了解如何捕获JavaScript中的异常-

<html>

   <head>

      <script>

         <!--

            function myFunc() {

               var a = 100;

               try {

                  alert("Value of variable a is : " + a );

               }

               catch ( e ) {

                  alert("Error: " + e.description );

               }

               finally {

                  alert("最终块将始终执行!" );

               }

            }

         //-->

      </script>

   </head>

   <body>

      <p>Click the following to see the result:</p>

      <form>

         <input type = "button" value = "Click Me" onclick = "myFunc();" />

      </form>

   </body>

</html>

以上是 如何在JavaScript中捕获异常? 的全部内容, 来源链接: utcz.com/z/347154.html

回到顶部