根据浏览器内核判断是web/iOS/android/ipad/iphone 来打开不同的网站或页面
Posted 礼拜16
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了根据浏览器内核判断是web/iOS/android/ipad/iphone 来打开不同的网站或页面相关的知识,希望对你有一定的参考价值。
纯js,直接分享,直接使用:
var browser={ versions:function(){ var u = navigator.userAgent, app = navigator.appVersion; 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.*/), //是否为移动终端 ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端 android: u.indexOf(‘Android‘) > -1 , //android终端或者uc浏览器|| u.indexOf(‘Linux‘) > -1 iPhone: u.indexOf(‘iPhone‘) > -1 , //是否为iPhone或者QQHD浏览器 iPad: u.indexOf(‘iPad‘) > -1, //是否iPad webApp: u.indexOf(‘Safari‘) == -1, //是否web应该程序,没有头部与底部 wechat: u.indexOf(‘MicroMessenger‘)!=-1 }; }(), language:(navigator.browserLanguage || navigator.language).toLowerCase() } if(browser.versions.mobile || browser.versions.ios || browser.versions.android || browser.versions.iPhone || browser.versions.iPad){ if(browser.versions.wechat) { location.href="http://a.app.qq.com/o/simple.jsp?pkgname=com.duodian.zilihj" } else { location.href="https://"+location.hostname+"/mobile" } } var href= location.href href = href.replace(/^http:/i,function(){ return ‘https:‘ }).replace(/^https:\/\/www\./i,function(){ return ‘https://‘ }).replace(/zi\.com/,‘zl-hj.com‘) if(href!=location.href) { location.assign(href) }
请把这段代码置于 </head> 前
以上是关于根据浏览器内核判断是web/iOS/android/ipad/iphone 来打开不同的网站或页面的主要内容,如果未能解决你的问题,请参考以下文章
根据userAgent判断移动端是iOS 还是android?
通过meta设置多内核浏览器使用webkit内核解析<meta http-equiv = "X-UA-Compatible" content = "IE=edge(