Uncaught TypeError: Cannot read property 'msie' of undefined 오류 해결방법
페이지 정보
냐잉 23-08-28 15:11 조회 2,615회 댓글 0건본문
달력기능 추가 시
include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
호출 시 Uncaught TypeError: Cannot read property 'msie' of undefined 에러가 날때
1.9버전대에서 삭제된 기능때문에 아래와 같은 스크립트를 추가해주면 해결
include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
호출 시 Uncaught TypeError: Cannot read property 'msie' of undefined 에러가 날때
1.9버전대에서 삭제된 기능때문에 아래와 같은 스크립트를 추가해주면 해결
<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>