function isTrueIE() { 
    if (navigator.userAgent.indexOf("MSIE") > 0) { 
        // ie 内核 
        if (navigator.userAgent.indexOf("Tablet PC") > 0) {
             // x64 纯ie
             return true;
        }
        else if (navigator.userAgent.indexOf("Maxthon") > 0 || navigator.userAgent.indexOf("SE ") > 0 ||navigator.userAgent.indexOf("360") > 0 || navigator.userAgent.indexOf("QQ") > 0 ||
 navigator.userAgent.indexOf("Trident") > 0) { 

            // IE内核非IE浏览!
             return false;
         }
         else { 
            // x32 纯ie 
            return true;
         }
     }
     return false;
 }

 

posted on 2012-11-01 14:55  NeverGiveUp_ZONE  阅读(640)  评论(0编辑  收藏  举报