2018년 4월 9일 월요일

[javascript] ie 버전체크

var ie = (function(){
           if (window.ActiveXObject === undefined) return null;
           if (!document.querySelector) return 7;
           if (!document.addEventListener) return 8;
           if (!window.atob) return 9;
           if (!document.__proto__) return 10;
           return 11;
  })(); //ie버전체크

댓글 없음:

댓글 쓰기