0

我正在尝试重定向到我的移动网站。这是我在主页 (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

4

0 回答 0