zl程序教程

您现在的位置是:首页 >  系统

当前栏目

网站禁止PC端访问代码 手机端访问

网站手机代码 访问 禁止 PC
2023-06-13 09:18:44 时间

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

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