只是一个普遍的问题。我正在开发一个将在各种不同设备上使用的网站。
是否可以检查网站运行的设备。使用Javascript或Angular的IOS,Android,桌面等? OBS NOT JQUERY
抱歉不知道谷歌的内容,你能指出我正确的方向吗?
谢谢
答案 0 :(得分:1)
What is the best way to detect a mobile device in jQuery?
这里被问到同样的问题。你可以使用JQuery。
编辑:
试试这个。
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: function() {
return navigator.userAgent.match(/Opera Mini/i);
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i);
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
}
};
答案 1 :(得分:1)
What is the best way to detect a mobile device in jQuery?
仅使用javascript检测设备:
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
// some code..
}