DBILITY

독거 가능성 100% 노후에 라면값이라도 하게 센스를 발휘합시다!😅
Please click on the ad so that I can pay for ramen in my old age!
点击一下广告,让老后吃个泡面钱吧!
老後にラーメン代だけでもするように広告を一回クリックしてください。

explorer 11이하와 기타 browser 식별시 테스트용 본문

front-end & ui/xplatform

explorer 11이하와 기타 browser 식별시 테스트용

DBILITY 2017. 9. 4. 13:38
반응형

초기페이지에서 plugin설치로 분기시 적용해 봐야겠다.

11이하는 기존의 activex설치 방식으로 처리, 이외는 신규런처 설치로


var agent = navigator.userAgent.toLowerCase();

if( ( agent.indexOf('msie') == -1 && agent.indexOf('trident') == -1  ) || agent.indexOf('edge') > -1 ) {

document.write("익스아님");

} else {

document.write("익스임");

}

반응형
Comments