티스토리 뷰
브라우저 확인: IE
<!-- Tested on 2016. 12. 5. --> <body> <!-- IE8 --> <!--[IF IE 8]> <p>isIE8</p> <![endif]--> <!-- IE9 --> <!--[IF IE 9]> <p>isIE9</p> <![endif]--> <!-- Conditional Comment no longer works since IE10 --> <!-- So we use JavaScript --> <div id="isIE10"></div> <div id="isIE11"></div> <script> $(document).ready(function() { // IE10 if (Function('/*@cc_on return document.documentMode===10@*/')()) { console.log('IE10'); $('#isIE10').append('<p>IE10</p>'); } // IE11 if (/Trident.*rv[ :]*11\./.test(navigator.userAgent)) { console.log('IE11'); $('#isIE11').append('<p>IE11</p>'); } }); </script> </body>
브라우저 확인: Chrome
var isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
'코딩방 > 트러블슈팅' 카테고리의 다른 글
[Apache] vhosts 초기 설정 시 Forbidden 오류 (0) | 2017.07.05 |
---|---|
[HTML] textarea 값에 줄바꿈 넣기 (0) | 2017.06.19 |
[기타] 이클립스 라이브러리 추출 (0) | 2017.06.16 |
[Java] Input 한글값 입력 안 될 때 (0) | 2017.06.05 |
[MySQL] ERROR 1045 (28000) (0) | 2017.05.29 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday