當(dāng)你的網(wǎng)頁使用了兩套代碼(移動(dòng)端和pc端代碼)來顯示你的網(wǎng)頁時(shí)萧朝,就需要用到這種方法:
手機(jī)端:
if (!/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = "http://你的pc端網(wǎng)址";
}
電腦端:
if (/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = "http://你的移動(dòng)端端網(wǎng)址";
}