我希望如果桌面用户访问我的网站,他们会被重定向到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>
但是当我访问我的网站时,我得到的只是一个白色屏幕。 这个脚本有问题吗?我是否需要另一个处理用户代理的脚本,还是由上述脚本处理? 提前谢谢。
答案 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>