JS根據獲取的navigator.userAgent,判斷用戶打開頁面的終端

var browser = {
    versions: function() {
        var u = navigator.userAgent;
        var app = navigator.appVersion;
        return {
            trident: u.indexOf('Trident') > -1,
            presto: u.indexOf('Presto') > -1,
            pwebkit: u.indexOf('AppleWebKit') > -1,
            gecko: u.indexOf('Gecko') > -1 && u.indexOf('Khtml') == -1,
            mobile: !!u.match(/AppleWebKit.*Mobile.*/) || !!u.match(/AppleWebKit/),
            //是否爲移動終端
            ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/),
            //ios終端                
            android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,
            //android終端或者uc瀏覽器                
            //iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //是否爲iPhone或者QQHD瀏覽器                
            iPhone: u.indexOf('iPhone') > -1,
            //是否爲iPhone或者QQHD瀏覽器                
            iPad: u.indexOf('iPad') > -1,
            //是否iPad                
            webApp: u.indexOf('Safari') == -1
            //是否web應該程序,沒有頭部與底部 

        };

    } ()

}
var argStr = location.search;
if (browser.versions.iPhone || browser.versions.android) {
    //用手機瀏覽
    if (argStr == "")
    {
        window.open('', '_self', '', 'true');

    }
}
相關文章
相關標籤/搜索