根据当前设备环境来做pc端和手机端网页显示

当你的网页使用了两套代码(移动端和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://你的移动端端网址";

}

你可能感兴趣的:(根据当前设备环境来做pc端和手机端网页显示)