通过JS判断打开PC或H5页面

来源:互联网 发布:35岁程序员职业规划 编辑:程序博客网 时间:2024/06/07 17:09

一、亲测可用

<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= '手机站链接'; 

} else { 

window.location= 'PC站链接'; //亲测,如果是在PC的head中添加的话,此处为空!

browserRedirect(); 

</script>


二、未尝试

<script type="text/javascript">

<!-- 

//平台、设备和操作系统

var system ={

win : false,

mac : false,

xll : false

};

//检测平台

var p = navigator.platform;

system.win = p.indexOf("Win") == 0;

system.mac = p.indexOf("Mac") == 0;

system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);

//跳转语句,如果是手机访问就自动跳转到wap.baidu.com页面

if(system.win||system.mac||system.xll){

 

}else{

window.location.href="手机站链接";

}

-->

</script>

否则打开网站默认页面