如何使用JavaScript将桌面用户重定向到一个站点,将移动用户重定向到另一个站点

时间:2015-07-07 06:28:42

标签: javascript redirect mobile desktop

我希望如果桌面用户访问我的网站,他们会被重定向到example.com,移动用户会被重定向到m.example.com,我被告知要使用这个脚本:

<script>

if (navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/webOS/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/Windows Phone/i)) { 
return window.location.assign("m.example.com"); 
} else { 
return window.location.assign("example.com"); 
} 
} 
</script>

但是当我访问我的网站时,我得到的只是一个白色屏幕。 这个脚本有问题吗?我是否需要另一个处理用户代理的脚本,还是由上述脚本处理? 提前谢谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

<script>

if (navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/webOS/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/Windows Phone/i)) { 
    window.location.assign("http://m.example.com"); 
} else { 
    window.location.assign("http://example.com"); 
} 

</script>