<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8" />
<title>js实现打开网页设备判断</title>
<script>
/*判断打开设备*/
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);
var local= location.href;
//跳转语句
if(system.win||system.mac||system.xll){
//此处说明打开该网页设备为pc端
alert("该设备为PC端");
//若用移动端网址路径访问则自动跳转到对应pc端路径
if(local=='http://www.centlight.com/mobile_web.html'){
window.location.href="http://www.centlight.com/child_web.html";
}else if(local=='http://www.centlight.com/mobile_ui.html'){
window.location.href="http://www.centlight.com/child_ui.html";
}else if(local=='http://www.centlight.com/mobile_php.html'){
window.location.href="http://www.centlight.com/child_php.html";
}else{
window.location.href="http://www.centlight.com/";
}
}else{
//此处说明打开该网页设备为移动端
alert("该设备为移动端");
//若用PC端网址路径访问则自动跳转到对应移动端路径
if(local=='http://www.centlight.com/child_web.html'){
window.location.href="http://www.centlight.com/mobile_web.html";
}else if(local=='http://www.centlight.com/child_ui.html'){
window.location.href="http://www.centlight.com/mobile_ui.html";
}else if(local=='http://www.centlight.com/child_php.html'){
window.location.href="http://www.centlight.com/mobile_php.html";
}else{
window.location.href="http://www.centlight.com/mobile.html";
}
}
</script>
</head>
<body>
</body>
</html>
js实现打开网页设备判断
原创
©著作权归作者所有:来自51CTO博客作者风中木偶的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:Apache的虚拟目录功能介绍
下一篇:jQuery实现页面背景随机切换
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
如何实现Android平台GB28181设备接入模块按需打开摄像头并回传数据
技术背景实际上,我在年前的blog,已经写过Android平台GB28181后台service模式启动摄像头按需回传数据了,此次版本,是上个demo的迭代版,目的是平台侧如果不发起回传请求的话,摄像头不打开。后台service模式启动后,仅完成平台上线注册,如果有语音广播过来,自动播放语音广播audio,如果平台侧订阅实时位置,安卓端按照位置订阅间隔,实时上报当前位置,当前端发起回传请求时,打开摄
GB28181按需回传 GB28181后台采集摄像头 GB28181推流 GB28181 Android 大牛直播SDK