【已测试】html:JS来判断页面是在手机端还是在PC端打开的方法

我们想要的效果是pc文件和mobile文件统一入口,适配不同的设备。
先看看项目的目录:
仿响应式html:JS来判断页面是在手机端还是在PC端打开的方法
在index.html里面配置js控制选择那一个文件夹下的文件就可以了。
我们要利用:Navigator 对象,Navigator 对象包含有关浏览器的信息。
index.html很简单,直接上码吧:

[code]<!DOCTYPE html>
<html>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”initial-scale=1, maximum-scale=1, user-scalable=no” />
<script type=”text/javascript”>
function browserRedirect() {
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == “ipad”;
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == “iphone os”;
var bIsMidp = sUserAgent.match(/midp/i) == “midp”;
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == “rv:1.2.3.4”;
var bIsUc = sUserAgent.match(/ucweb/i) == “ucweb”;
var bIsAndroid = sUserAgent.match(/android/i) == “android”;
var bIsCE = sUserAgent.match(/windows ce/i) == “windows ce”;
var bIsWM = sUserAgent.match(/windows mobile/i) == “windows mobile”;
if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
//跳转移动端页面
window.location.href=”http://f.jcngame.com/fanfan20171208/mobile/index.html”;
} else {
//跳转pc端页面
window.location.href=”http://f.jcngame.com/fanfan20171208//fanmai/index.html”;
}
}
browserRedirect();
</script>
</head>
<body>
</body>
</html>[/code]

补充,感觉之前代码太冗余了,现在用正则来优化了一下:

<script type="text/javascript">
	function browserRedirect() {
           var sUserAgent = navigator.userAgent.toLowerCase();
           if (/ipad|iphone|midp|rv:1.2.3.4|ucweb|android|windows ce|windows mobile/.test(sUserAgent)) {
               //跳转移动端页面
               window.location.href="http://f.jcngame.com/fanfan20171208/mobile/index.html";
           } else {
               //跳转pc端页面
               window.location.href="http://f.jcngame.com/fanfan20171208//fanmai/index.html";
           }
       }
	browserRedirect(); 
</script>

仿响应式html:JS来判断页面是在手机端还是在PC端打开的方法
仿响应式html:JS来判断页面是在手机端还是在PC端打开的方法

网站声明: 1.本站大部分资源搜集于网络,仅代表作者观点,如有侵权请提交修改。 2.网站内容仅网站站长做个人学习摘记,任何人不得用于其他商业用途,网站发表的内容全权归原作者所有。 3.有任何疑问,可以点击右侧边栏的联系QQ进行咨询 4.本网站部分内容来自于其他网站平台的,版权归原网站所有,本网站只作信息记录,自己学习使用,特此申明,本站用户也不得使用此信息内容做其他商业用途。
白丁学者 » 【已测试】html:JS来判断页面是在手机端还是在PC端打开的方法

发表回复

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据