자바스크립트에도 에러를 확인 할수있는 try catch 문이 있다.
뭐~ console.log를 사용해서 볼수 도 있겠지만 try catch 문을 이용해야 하는 경우도 있으니 알아두면 좋을것 같다.
try {
addalert("bad call");
}
catch(e) {
document.write ("Error Message: " + e.message);
document.write ("<br />");
document.write ("Error Code: ");
document.write (e.number & 0xFFFF);
document.write ("<br />");
document.write ("Error Name: " + e.name);
}
// Output:
Error Message: 'addalert' is undefined
Error Code: 5009
Error Name: ReferenceError
'IT > javascript' 카테고리의 다른 글
이미지 크기 대로 팝업(새창) 띄우기 (0) | 2018.07.13 |
---|---|
날짜 포맷 자동 만들기 (0) | 2018.06.20 |
자바스크립트 반올림, 올림, 버림 (0) | 2018.02.13 |
txt(json 방식) 파일을 읽어서 ajax로 db 저장 (0) | 2015.12.23 |
ajax의 여러가지 사용 법 (C#) (0) | 2015.12.23 |