Cannot read property 'msie' of undefined 에러 잡기 (1.9 버전이상)
작성일 16-04-14 20:12
페이지 정보
작성자서방님 조회 120회 댓글 0건본문
jQuery import 바로아래에 넣어준다 .
<script type=
"text/javascript"
>
jQuery.browser = {};
(
function
() {
jQuery.browser.msie =
false
;
jQuery.browser.version = 0;
if
(navigator.userAgent.match(/MSIE ([0-9]+)\./)) {
jQuery.browser.msie =
true
;
jQuery.browser.version = RegExp.$1;
}
})();
</script>
참고 : http://stackoverflow.com/questions/14892095/browser-msie-error-after-update-to-jquery-1-9-1
댓글목록
등록된 댓글이 없습니다.