브라우저 detect!!
<!-- <script>
var browserType = ['MSIE', 'Trident', 'Edge'];
var detect, IEx = navigator.userAgent;
var IEstyleSheet = document.querySelector('.alternate-style');
for(var i = 0; i < browserType.length; i++){
if(IEx.indexOf(browserType[i]) > -1){
detect = browserType[i];
console.log(detect);
break;
}
}
if(detect == 'MSIE' || detect == 'Trident' || detect == 'Edge' ){
detect = 'Internet Explorer'; // 익스플로러 버전이 바뀔 경우, 위 단어가 아닐 경우 위험!! //
console.log('working?');
//익스플로러 버전을 구체적으로 확인하지 않는 방법.
detectIE();
function detectIE (){
if(detect = 'Internet Explorer'){
IEstyleSheet.removeAttribute('disabled');
}else{
IEstyleSheet.setAttribute('disabled', true);
}
}
}
</script> -->
'코드 간편모음' 카테고리의 다른 글
경로, 파일명 가져오기 ( feat. split, substr, substring ) (0) | 2021.01.20 |
---|---|
keydown, keyup [event.which & event.shiftKey & event.keyCode] (0) | 2021.01.08 |
input 전체 선택 [live.( ) / if( ){ } / prop( )] (0) | 2020.11.25 |
flag를 활용한 트릭 (0) | 2020.10.30 |
IE용 주석을 이용한 방법 (Conditional comments) & 크로스 브라우징 (0) | 2020.08.20 |
댓글