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

js判断浏览器类型和内核

时间:2014-12-02 10:10:54      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   io   ar   color   os   sp   

function judge() {
            var sUserAgent = navigator.userAgent.toLocaleLowerCase();
            var isLinux = (String(navigator.platform).indexOf("linux") > -1);//是否为linux内核
            var bIsAndroid = sUserAgent.match(/android/i) == "android";//是否为安卓
            var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";//是否为wp系统
            var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";//是否为ipad
            var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
            var bIsCE = sUserAgent.match(/windows nt/i) == "windows nt";

            if (isLinux) {
                return "linux";
            } else if (bIsIpad || bIsIphoneOs) {
                return "ios";
            } else if (bIsWM) {
                return "wp";
            } else if (bIsCE) {
                return "pc";
            } else if (bIsAndroid) {
                return "android";
            }
        }

        var agent = judge();

        if (agent == "android" || agent == "linux") {
            window.location.href = "http://mm.neihanla.cn/app/";
        } else {
        }

 

js判断浏览器类型和内核

标签:android   style   blog   http   io   ar   color   os   sp   

原文地址:http://www.cnblogs.com/zhaozi/p/4136707.html

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