赞
踩
<script type="text/javascript">
var system = {};
var p = navigator.platform;
system.win = p.indexOf("Win") == 0;
system.mac = p.indexOf("Mac") == 0;
system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
if (system.win || system.mac || system.xll) {
//如果是电脑跳转到
window.location.href = "./index.html";
} else {
//如果是手机,跳转到
window.location.href = "./html/error.html";
}
</script>
把以上这段代码写在head里面,建议写在一切链接之前,因为有些如果是引入CDN的话就会有点慢,不如直接先对终端设备进行判断,再选择加载对应的css样式和html代码
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。