所以我试图在我的网站上重定向移动页面。如果有人在移动设备上,那么它会将他们发送到移动站点而不是桌面站点。它适用于 Chrome。但是,它不适用于 macOS Safari。知道为什么吗?JavaScript 如下:
<script>
if (screen.width <= 420) {
document.location="mobileindex.html";
}
</script>
Run Code Online (Sandbox Code Playgroud)