
用 js 限制網頁只在手機端中打開,網站屏蔽 PC 端訪問 JS 代碼,網站只允許手機端訪問。
<script type="text/javascript"> if(window.screen.width==0){window.location.replace("")}; 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>
? 版權聲明
文章版權歸作者所有,未經允許請勿轉載。
THE END