下面的代码功能,是通过Jequery来实现的,作用是判断访问者是否是通过移动设备来访问。
$(document).ready(function(){
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i) ? true: false;
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i) ? true: false;
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i) ? true: false;
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i) ? true: false;
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
}
};
if (isMobile.any()){
alert("是移动设备");
}else
{
alert("非移动设备");
}
});
使用方法:使用的时候,其它的都不用你修改,只修改下面这两部分就行了。
if (isMobile.any()){
alert("是移动设备");
}else
{
alert("非移动设备");
}
把 alert("是移动设备");这部分改为你自己的代码就可以了。