限制网页只在手机端中打开,网站屏蔽PC端访问JS代码,网站只允许手机端访问,代码如下:
<script type="text/javascript">
if(window.screen.width==0){window.location.replace("https://xxxx.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("https://xxxx.com");
}
</script>
为了实现网站只在手机端中打开,屏蔽PC端访问的功能,可以使用JavaScript代码来检测用户设备的屏幕尺寸和浏览器特性。示例代码:
// 检测设备类型
function detectDevice() {
const userAgent = navigator.userAgent;
const screenWidth = window.screen.width;
const screenHeight = window.screen.height;
// 判断是否为移动设备
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(userAgent)) {
return "mobile";
} else if (screenWidth <= 768 || screenHeight <= 768) {
return "mobile";
} else {
return "pc";
}
}
// 如果当前设备不是移动设备,则跳转到指定提示页面或执行其他操作
if (detectDevice() !== "mobile") {
window.location.href = "https://example.com/not-allowed";
}
© 版权声明
THE END
请登录后查看评论内容