用js限制网页只在手机端中打开,网站屏蔽PC端访问JS代码,网站只允许手机端访问。
<script type=\"text/javascript\">
if(window.screen.width==0){window.location.replace(\"https://www.moshizy.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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mobile Only Page</title>
<script>
// 检测用户设备类型
function isMobile() {
return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
}
// 如果是PC端访问,则重定向到移动端页面
function redirectIfNotMobile() {
if (!isMobile()) {
window.location.href = "https://yourmobilesite.com"; // 更换为你的移动端网址
}
}
// 当页面加载完成时检测设备类型
window.onload = function() {
redirectIfNotMobile();
};
</script>
</head>
<body>
<!-- 在此添加移动端页面内容 -->
</body>
</html>