검색결과 리스트
글
//==================================================================
// 스크립트 오류 메세지
//==================================================================
function myDebug(errmsg, url, linenum)
{
errWin=window.open('','','width=350,height=220,scrollbars=no');
errWin.document.open();
errWin.document.write('<CENTER><H1>스크립트오류 정보</H2></CENTER>');
errWin.document.write('에러메시지: <FONT COLOR=RED>'+errmsg+'</FONT><BR>');
errWin.document.write('에러가 난 문서: <FONT COLOR=RED>'+url+'</FONT><BR>');
errWin.document.write('에러가 난 라인: <FONT COLOR=RED>'+linenum+'</FONT>');
errWin.document.close();
return true;
}
window.onerror=myDebug;
'JavaScript > JavaScript' 카테고리의 다른 글
[javaScript] javascript 함수와 스코프 체인 (0) | 2012.11.07 |
---|---|
[JavaScript] source property (0) | 2012.11.07 |
[javascript] 천단위 숫자 찾아주는 정규표현식 (0) | 2012.09.22 |
[Javascript] UTF-8 인코딩 관련 (0) | 2012.09.21 |
[JavaScript] 정규표현식 한글 찾기 (0) | 2012.09.11 |
RECENT COMMENT