咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

h5 js判断是IOS系统还是android系统

2019-04-16 22:15:34 6380次

h5 js判断是IOS系统还是android系统

function detect(){
         var equipmentType = "";
         var agent = navigator.userAgent.toLowerCase();
         var android = agent.indexOf("android");
         var iphone = agent.indexOf("iphone");
         var ipad = agent.indexOf("ipad");
         if(android != -1){
             equipmentType = "android";
         }
         if(iphone != -1 || ipad != -1){
             equipmentType = "ios";
         }
         return equipmentType;
     }


首页
最新活动
个人中心