我在开发的Magento或Wordpress主题时,通过都会制作手机版本,为了实现某个片段在手机端和桌面端不同功能,又或者如果是手机设备,就跳转到指定的网页上,那么这里就需要用到JS来做判断了,下面有一个简单的检测方法,经试验是可行的。
方法一:纯JS判断
使用这方法既简单,又实用,不需要引入jQuery库,把以下代码加入到<head>里即可。
1 |
<script type=”text/javascript”> |
2 |
if ( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
|
3 |
window.location = “mobile.html”; //可以换成http地址
|
4 |
} |
5 |
</script> |
方法二:使用 Device.Js 库
device.js 是一个用于检查设备用的插件,使用它你可以很方便的判断设备的操作系统,以及设备是纵向还是横向。
首先,我们下载Device.js
下载地址:https://github.com/matthewhudson/device.js
STEP 1: 引入 JS 文件
1 |
<script src=”device.min.js”></script> |
STEP 2: 加入判断代码
1 |
<script type=”text/javascript”> |
2 |
if (device.mobile()){
|
3 |
window.location = “shouji.html”; //可以换成http地址
|
4 |
} |
5 |
</script> |
Device.js 方法有很多,若你想实现对某个设备的判断,要以根据以下代码来替换device.mobile()。
以上两种方法判断手机端都是很实用的,由其是电脑版网页和手机版网页分别用不同的网站域名时,使用该方法可以免去用户记2个域名烦恼!
参考阅读:http://*.com/questions/3514784/what-is-the-best-way-to-detect-a-mobile-device-in-jquery
原文链接:http://www.shejidaren.com/the-best-way-to-detect-a-mobile-device.html