首页 > 代码库 > 纯JS判断IE浏览器版本

纯JS判断IE浏览器版本

IE11或者非IE

if (!document.all) {    alert(‘IE11+ or not IE‘);}

IE10

if (document.all && document.addEventListener && window.atob) {    alert(‘IE10‘);}

IE9

if (document.all && document.addEventListener && !window.atob) {    alert(‘IE9‘);}

IE8

if (document.all && document.querySelector && !document.addEventListener) {    alert(‘IE8‘);}

IE7

if (document.all && window.XMLHttpRequest && !document.querySelector) {    alert(‘IE7‘);}

IE6

if (document.all && document.compatMode && !window.XMLHttpRequest) {    alert(‘IE6‘);}

 

纯JS判断IE浏览器版本