JS判断移动设备最佳方法 并实现跳转至手机版网页

方法一:纯JS判断

使用这方法既简单,又实用,不需要引入jQuery库,把以下代码加入到<head>里即可。

1
2
3
4
5
<script type=”text/javascript”>
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
window.location = “mobile.html”; //可以换成http地址
}
</script><br><br>

方法二:使用 Device.js 库

device.js 是一个用于检查设备用的插件,使用它你可以很方便的判断设备的操作系统,以及设备是纵向还是横向。

首先,我们下载Device.js

下载地址: https://github.com/matthewhudson/device.js

STEP 1: 引入 JS 文件

<script src=”device.min.js”></script>

STEP 2: 加入判断代码

1
2
3
4
5
<script type=”text/javascript”>
if(device.mobile()){
window.location = “shouji.html”;  //可以换成http地址
}
</script>
1

Device.js 方法有很多,若你想实现对某个设备的判断,要以根据以下代码来替换device.mobile()。

全文:http://www.open-open.com/lib/view/open1449234779436.html //jquery 判断移动设备

 

附:

device.js cdn地址

http://www.bootcdn.cn/device.js/

 

附送:Jquery 判断是不是 移动设备 浏览

首先,只判断是否是用 移动设备 浏览的:

// Mobile      这里是只有不再 移动设备 上访问时,才给相应元素加上 mouseenter  和  mouseleave  事件。
if (!navigator.userAgent.match(/mobile/i)) {

全文:http://blog.sina.com.cn/s/blog_471c84190102uzox.html

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注