当你的网页使用了两套代码(移动端和pc端代码)来显示你的网页时,就需要用到这种方法:
手机端:
if (!/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = "http://你的pc端网址";
}
电脑端:
if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = "http://你的移动端端网址";
}