Category
Notice
Recent Posts
Recent Comments
Link
Calendar
Archives
Visits
- Today
- Total
개성있는 개발자 되기
IE 에서 console.log 작동 오류 본문
배포된 웹이 IE에서 정상적으로 작동하지 않는다는 문의가 들어옴
IE에서 확인해보니, 아래와 같은 오류가 떴다.
console 객체는 IE8에서 부분적으로 호환한다는 글을 봤고 (https://developer.mozilla.org/ko/docs/Web/API/Console#%EB%B8%8C%EB%9D%BC%EC%9A%B0%EC%A0%80_%ED%98%B8%ED%99%98%EC%84%B1)
자바스크립트 제일 상단에 console 객체를 정의해주면 해결된다.
// IE 에서 console 객체를 지원하지 않는 케이스가 있다.
if(typeof console == "undefined") {
this.console = {
log:function(){}
};
}
var console = window.console || {
log : function() {
}
};
'에러 기록 정리' 카테고리의 다른 글
Cause: java.sql.SQLException: 숫자 오버플로우 (0) | 2020.09.07 |
---|---|
Connection is not available, request timed out after 30000ms. (0) | 2020.06.24 |
not allowed to load local resource 오류 (0) | 2019.07.31 |
Comments