我正在尝试重定向到我的移动网站。这是我在我的主页的头部代码(index.html)中使用的代码。这应该会自动将移动设备重定向到我的移动网站,但它不起作用。
<script>
if (document.location.search.indexOf("skipmobile") >= 0) {
document.cookie = "skipmobile=1";
}
else if ((document.location.hostname.match(/\.mobi$/) || screen.width < 699)
&& document.cookie.indexOf("skipmobile") == -1)
{
document.location = "mobile/";
}
</script>
有人可以就可能的错误或改进给我一些想法吗?
这是我的网站:www.accurateprinting.com