js判斷移動端和PC端跳轉不一樣頁面

方法一:css

/* * * 判斷PC端與WAP端 */
var mobile_bs = { versions: function() { var u = navigator.userAgent; return { trident: u.indexOf('Trident') > -1, //IE內核
            presto: u.indexOf('Presto') > -1,  //opera內核
            webKit: u.indexOf('AppleWebKit') > -1,  //蘋果、谷歌內核
            gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1,  //火狐內核
            mobile: !! u.match(/AppleWebKit.*Mobile.*/) || !! u.match(/AppleWebKit/) && u.indexOf('QIHU') && u.indexOf('QIHU') > -1 && u.indexOf('Chrome') < 0,  //是否爲移動終端
            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瀏覽器
            iPad: u.indexOf('iPad') > -1,     //是否iPad
            webApp: u.indexOf('Safari') == -1   //是否web應該程序,沒有頭部與底部
 } } () }; if (mobile_bs.versions.mobile) {   window.location.href = "移動端網址"; }

可是此方法判斷的類型並不全,好比努比亞手機就沒有判斷。。。android

 

方法二:ios

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|Nubia/.test(navigator.userAgent))){ window.location.href = '移動端網址' }

此法若是缺乏機型,能夠本身進行追加~web

相關文章
相關標籤/搜索