Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm thế nào để phát hiện một thiết bị di động có JavaScript?


Sử dụng đoạn mã sau để phát hiện thiết bị di động -

Ví dụ

var device = {
   Android: function() {
      return navigator.userAgent.match(/Android/i);
   },

   iOS: function() {
      return navigator.userAgent.match(/iPhone|iPad/i);
   },

   any: function() {
      return (isMobile.Android() || isMobile.iOS());
   }
};