用JavaScript判断网站是在手机端还是在PC端打开的方法

我们可以在网站的首页加上一段JavaScript代码对用户的浏览器进行判断,从而显示不同的网址,代码如下:

<script type="text/javascript">
if (window.location.toString().indexOf('pref=padindex') != -1) {} else {
if (/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))) {
if (window.location.href.indexOf("?mobile") < 0) {
try {
if (/Android|Windows Phone|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
window.location.href = "/手机端网址/";
} else if (/iPad/i.test(navigator.userAgent)) { } else { }
} catch (e) { }
}
}
}
</script>

加入上面的代码就可以了。

上一篇:用 const 限定类的成员函数


下一篇:C#常用扩展方法