html网页判断手机还是电脑登陆进入
我的主页是index.html,我想让登陆进入网站的用户分析是电脑的登陆进入cindex.html。如果是手机(或移动设备)登陆进入的,那就进入mindex.html,求...
我的主页是index.html,我想让登陆进入网站的用户分析是电脑的登陆进入cindex.html。如果是手机(或移动设备)登陆进入的,那就进入mindex.html,求大神分析代码,万般感谢,我知道index.asp的代码:http://zhidao.baidu.com/question/568974406.html?qbl=relate_question_0
但我的是index.html的,html的无效 展开
但我的是index.html的,html的无效 展开
2019-03-30
展开全部
方法有很多,核心就是navigator对象获取访问设备的相关属性,再做判断;
比如:
function goPAGE() { if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) { window.location.href="你的手机版地址";} else { window.location.href="你的电脑版地址"; }}还有比较简便的;
应该都是可以的,结合自身环境选用恰当的方式即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个是js的命令 写在head之间就可以的
更多追问追答
追问
求代码
追答
<script type="text/javascript">
try{
if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href="mindex.html";
}else{
window.location.href="cindex.html";
}
}catch(e){}
</script>
测试下看是否可用
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询