Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function foo() {
  2. // この関数からの例外は下記catchで捕まえられる
  3. }
  4.  
  5. try {
  6. foo();
  7. document.addEventListener(‘load’, function(e) {
  8. // この関数はcatchまでに実行されないので、
  9. // 例外は下記catchで捕まえられない
  10. });
  11. } catch (e) {
  12. // …
  13. }
  14.  
  15. window.addEventListener(‘error’, function(e) {
  16. // e.error が例外
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement