网站屏蔽PC端访问JS代码 网站只允许手机端访问

图片[1]-网站屏蔽PC端访问JS代码 网站只允许手机端访问-楊仙森万事坞

用js限制网页只在手机端中打开,网站屏蔽PC端访问JS代码 网站只允许手机端访问

<script type="text/javascript">
if(window.screen.width==0){window.location.replace("https://www.zxki.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>

 

温馨提示:本文最新于2022-08-17 19:15:17进行了更新,某些文章内容具有时效性,若失效或有错误,请在下方留言
© 版权声明
THE END
点赞16投币 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容