使用JavaScript代码限制网页只能在手机端打开,屏蔽PC端访问。具体来说,通过检测用户的设备类型,如果检测到是PC端访问,JavaScript会自动阻止网页加载或重定向用户,从而确保网站只能在手机端访问。
<script type=\”text/javascript\”>
if(window.screen.width==0){window.location.replace(\”https://www.90llhd.com\”)};
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>