Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

บทบาทของคำสั่ง throw ใน JavaScript คืออะไร?


ใช้ โยน คำสั่งเพื่อเพิ่มข้อยกเว้นในตัวของคุณหรือข้อยกเว้นที่กำหนดเองของคุณ ภายหลังสามารถจับข้อยกเว้นเหล่านี้ได้ และคุณสามารถดำเนินการตามความเหมาะสมได้

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้คำสั่ง throw −

<html>
   <head>
      <script>
         <!--
            function myFunc()
            {
               var a = 100;
               var b = 0;
               try{
                  if ( b == 0 ){
                     throw( "Divide by zero error." );
                  } else {
                     var c = a / b;
                  }
               }
               catch ( e ) {
                  alert("Error: " + e );
               }
            }
         //-->
      </script>
   </head>

   <body>
      <p>Click the following to see the result:</p>
      <form>
         <input type = "button" value = "Click Me" onclick = "myFunc();" />
      </form>
   </body>
</html>