[javascript] IE 버전 체크
조작이 가능한 User-Agent 값이 아닌.. 브라우저의 엔진이 지원하는 함수를 이용하여 브라우저의 버전을 체크하는 방법입니다. 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; })();
Frontend
2017. 2. 22. 14:06