使用JavaScript函數來檢測移動設備
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());
}
};
if(isMobile.any()) {
alert("This is a Mobile Device");
}
另一個JavaScript伎倆來檢測移動設備
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
// tasks to do if it is a Mobile Device
alert("Mobile Detected");
}
Detect Mobile Browser有腳本來檢測手機大集合設備。您可以獲得針對Apache,ASP,ASP.NET,ColdFusion,C#,IIS,JSP,JavaScript,jQuery,Lasso,nginx,node.js,PHP,Perl,Python,Rails等移動設備檢測腳本
這不是Android的編程。在網頁部分詢問。 – Wildcopper
可能的重複[在jQuery中檢測移動設備的最佳方法是什麼?](http://stackoverflow.com/questions/3514784/what-is-the-best-way-to-detect-a-mobile-設備在jquery) – Manu