IE 조건부 주석처리
본문
익스플로러 9이하일때 익스플로러를 업데이트하라는 주석문을 걸었습니다.
<!--[if lte IE 9]>
<script>
window.onload = function(){
location.href ='update.html'
}
</script>
<![endif]-->
조건부 주석은 IE10 미만에서만 작동하더군요..
혹시 IE10에서도 주석문이 작동하도록 하는 방법은 없나요?
답변 2
조건부 주석은 익스 10부터는 제거되어서 작동 안 해요.
navigator.userAgent로 체크하셔서 확인하셔야 할 것 같네요.
<!--[if lte IE 10]>
<script>
window.onload = function(){
location.href ='update.html'
}
</script>
<![endif]-->
답변을 작성하시기 전에 로그인 해주세요.