判断是不是移动设备
Posted wcn123456
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断是不是移动设备相关的知识,希望对你有一定的参考价值。
// 判断是不是移动设备
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());
}
};
以上是关于判断是不是移动设备的主要内容,如果未能解决你的问题,请参考以下文章