码迷,mamicode.com
首页 > 移动开发 > 详细

判断是不是移动设备

时间:2019-05-07 13:14:38      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:fun   ber   agent   ipad   one   ack   roi   cti   on()   

// 判断是不是移动设备
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());
}
};

判断是不是移动设备

标签:fun   ber   agent   ipad   one   ack   roi   cti   on()   

原文地址:https://www.cnblogs.com/wcn123456/p/10824707.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!