码迷,mamicode.com
首页 > 其他好文 > 详细

浏览器监测简易版

时间:2014-09-06 16:04:43      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   div   cti   sp   log   

//浏览器监测
(function(){
    window.sys = {};                                     //外部访问浏览器信息对象;
    var ua = navigator.userAgent.toLowerCase();            //浏览器信息字符串
    var s;                                                //浏览器名称加版本

    (s = ua.match(/msie ([\d.]+)/)) ? sys.ie = s[1] :
    (s = ua.match(/firefox\/([\d.]+)/)) ? sys.firefox = s[1] :
    (s = ua.match(/chrome\/([\d.]+)/)) ? sys.chrome = s[1] :
    (s = ua.match(/opera\/.*version\/([\d.]+)/)) ? sys.opera = s[1] :
    (s = ua.match(/version\/([\d.]+).*safari/)) ? sys.safari = s[1] : 0 ;
})();
if(sys.chrome){
    alert(‘这是a浏览器‘);
};
if((/msie ([\d.]+)/).test(ua)){
        s = ua.match(/msie ([\d.]+)/);
        sys.ie = s[1];
    }

    if((/firefox\/([\d.]+)/).test(ua)){
        s = ua.match(/firefox\/([\d.]+)/);
        sys.firebox = s[1];
    }

    if((/chrome\/([\d.]+)/).test(ua)){
        s = ua.match(/chrome\/([\d.]+)/);
        sys.chrome = s[1];
    }

    if((/opera\/.*version\/([\d.]+)/).test(ua)){
        s = ua.match(/opera\/.*version\/([\d.]+)/);
        sys.opera = s[1];
    }

    if((/version\/([\d.]+).*safari/).test(ua)){
        s = ua.match(/version\/([\d.]+).*safari/);
        sys.safari = s[1];
    }

 

浏览器监测简易版

标签:style   blog   color   io   ar   div   cti   sp   log   

原文地址:http://www.cnblogs.com/oceanden/p/3959453.html

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