jQuery v2.1.4 , ie8 , addEventListener
ie8에서 에러가 난다.. 화면이 깨짐
[ 방법1. ]
[ 방법2. ]
이미 되어있는 부분..
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge;" />
The doctype sets standards mode, and the meta forces IE to use the latest internal version.
OR don’t use a 2.x jQuery.
[ 방법3. ]
<!--[if lt IE 9]>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<![endif]-->
<!--[if gte IE 9]>
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<![endif]-->
<!--[if !IE]> -->
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
<!-- <![endif]-->
일단 보류..
반응형
'차근차근 > JAVA Script' 카테고리의 다른 글
ie 버전에 따라 팝업창 띄워주기 | 호환성보기 설정 알아보기 (0) | 2015.09.09 |
---|---|
홈페이지 접속 팝업창 , 오늘하루 띄우지 않기 (0) | 2015.09.08 |
nav , ie8 (0) | 2015.08.21 |
테이블 병합 및 필요없는 데이터 안 보이게 하기 (0) | 2015.06.09 |
jQuery를 이용한 테이블 셀병합 (0) | 2015.06.08 |