首页 > 其他 > 详细

判断各浏览器

时间:2017-11-16 15:48:12      阅读:309      评论:0      收藏:0      [点我收藏+]
function Browser() {
    this.Opera = window.opera ? true : false;
    this.IE = document.all && !this.Opera ? true : false;
    this.IE6 = this.IE && typeof(window.XMLHttpRequest) == "undefined" ? true : false;
    this.IE8 = this.IE && typeof(document.querySelectorAll) != "undefined" ? true : false;
    this.IE7 = this.IE && !this.IE6 && !this.IE8 ? true : false;
    this.WebKit = /WebKit/i.test(navigator.userAgent) ? true : false,
        this.iPhone = /iPhone|iPod/i.test(navigator.userAgent) ? true : false;
    this.Chrome = /Chrome/i.test(navigator.userAgent) ? true : false;
    this.Safari = /Safari/i.test(navigator.userAgent) && !this.Chrome ? true : false;
    this.Konqueror = navigator.vendor == "KDE" ? true : false;
    this.Konqueror4 = this.Konqueror && /native code/.test(document.getElementsByClassName) ? true : false;
    this.Gecko = !this.WebKit && navigator.product == "Gecko" ? true : false;
    this.Gecko19 = this.Gecko && Array.reduce ? true : false;
    this.toString = "Opera=" + this.Opera + ",IE=" + this.IE + ",IE6=" + this.IE6 + ",IE7=" + this.IE7 + ",IE8=" + this.IE8 + ",Chrome=" + this.Chrome;
}

 

判断各浏览器

原文:http://www.cnblogs.com/zxcc/p/7844618.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!