![图片[1]-网站屏蔽PC端访问JS代码 网站只允许手机端访问-东方博客](https://dfwl6.cn/wp-content/uploads/2022/10/2e15c7e742212636.png)
用js限制网页只在手机端中打开,网站屏蔽PC端访问JS代码,网站只允许手机端访问。
<script type="text/javascript">
if(window.screen.width==0){window.location.replace("https://dfwl6.cn")};
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);
if(system.win||system.mac||system.xll) {
location.replace("http://这里替换为你需要跳转的页面网址");
}
</script>
© 版权声明
本站所发布的全部内容源于互联网搬运,请在下载后24小时内删除。如果有侵权之处请第一时间联系我们E-mail:70188466@qq.com删除。敬请谅解!
THE END
暂无评论内容