限制页面被pc端访问

在需要被pc端访问的页面的脚本里加上如下代码即可:

<script>
var system = {}; var p = navigator.platform; var u = navigator.userAgent; 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) {//如果是PC转   if (u.indexOf('Windows Phone') > -1) { //win手机端   } else {     window.location.href = "提示页面路径";   } }
</script>

猜你喜欢

转载自www.cnblogs.com/kingsonfu/p/9857811.html