插入JS
限制网页只在手机端中打开,网站屏蔽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>
优化后
<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.x11) { // 修正了此处变量名 xll 为 x11
location.replace("https://xxxx.com");
}
</script>
解释:
- 整体代码逻辑是判断屏幕宽度是否为 0 以及操作系统类型来进行页面跳转。
- 优化点主要是修正了变量名
system.xll
为system.x11
,以保持代码的一致性和准确性。
有问题及时联系站长,QQ:1240555208
更多优质资源在QQ群里,可以进群领取:467392290~
© 版权声明
THE END
暂无评论内容