web首页设置如下代码可判断用户是用什么设备登录的?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web首页设置如下代码可判断用户是用什么设备登录的?相关的知识,希望对你有一定的参考价值。
var OnePage=true;//用来判断statichtml.js中首页登入的信息判断
var _mobileUrl = "http://www.m.90tuku.com";//手机用户通过手机方式访问网站的饿时候跳转的
checkMobileDevice();//调用监测代码
function isMobileDevice(){
return (navigator.userAgent.match(/android/i) || navigator.userAgent.indexOf(‘iPhone‘) > -1 || navigator.userAgent.indexOf(‘iPod‘) > -1 || navigator.userAgent.indexOf(‘iPad‘) > -1);
}
function isFromWap(){
return (location.href.indexOf("from=wap")>-1);
}
function checkMobileDevice(){
var mobileDevice = isMobileDevice();//检查是否是手持设备过来的
if(mobileDevice){
var formWap = isFromWap();
// if(fromWap!="fromWap"){//检查是否是手机端发送的要登入pc网址
if(!formWap){
location.href = _mobileUrl;
return false;
}
// }
}
}
以上是关于web首页设置如下代码可判断用户是用什么设备登录的?的主要内容,如果未能解决你的问题,请参考以下文章