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

js 判断ie

时间:2014-12-17 14:16:57      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   io   color   sp   on   div   

  

var isIE = !!window.ActiveXObject;
    var isIE6 = isIE && !window.XMLHttpRequest;
    var isIE7 = !!(!window.addEventListener && window.XMLHttpRequest && !document.querySelectorAll);
    var isIE8 = !!(!window.addEventListener && document.querySelectorAll);
    $(function(){
        if(isIE || isIE6 || isIE7 || isIE8){
           //do something
        }else{
           //do something
        }
    })

 

js 判断ie

标签:style   blog   http   ar   io   color   sp   on   div   

原文地址:http://www.cnblogs.com/smjia/p/4169235.html

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