美文网首页
判断设备的类型

判断设备的类型

作者: 程本超 | 来源:发表于2018-06-12 14:46 被阅读0次
    (function() {
        if(/s=noRedirect/i.test(location.search)) return; 
        if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))) {
            try {
                if(/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
                    window.location.href = "http://3g.163.com";
                } else if(/iPad/i.test(navigator.userAgent)) {
                    window.location.href = "http://www.163.com/ipad/";
                }
            } catch(e) {}
        }   
    })();
    if(navigator.platform.indexOf("Mac") > -1) document.documentElement.classList.add("ua-mac");
    

    相关文章

      网友评论

          本文标题:判断设备的类型

          本文链接:https://www.haomeiwen.com/subject/yvoleftx.html