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

จะเขียนตัวจัดการข้อผิดพลาดส่วนกลางใน JavaScript ได้อย่างไร


ตัวจัดการข้อผิดพลาดส่วนกลางต่อไปนี้จะแสดงวิธีตรวจจับข้อยกเว้นที่ไม่สามารถจัดการได้ -

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <script>
         window.onerror = function(errMsg, url, line, column, error) {
            var result = !column ? '' : '\ncolumn: ' + column;
            result += !error;
            document.write("Error= " + errMsg + "\nurl= " + url + "\nline= " + line + result);
            var suppressErrorAlert = true;
            return suppressErrorAlert;
         };
         setTimeout(function() {
            eval("{");
         }, 500)
      </script>
   </body>
</html>