码迷,mamicode.com
首页 > Web开发 > 详细

纯JS判断IE浏览器版本

时间:2015-01-20 19:50:56      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

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浏览器版本

标签:

原文地址:http://www.cnblogs.com/cnsevennight/p/4236700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!