判断浏览器的类型(微信,安卓,IOS)

//判断微信浏览器

function is_weixin(){

       var ua = navigator.userAgent.toLowerCase();

      if(ua.match(/MicroMessenger/i)=="micromessenger") {

            return  true;

     } else {

          return false;

     }

}

//判断是否为安卓设备

function isAndroid(){

       var u = navigator.userAgent;

      if(u.indexOf('Android') > -1 || u.indexOf('Linux') > -1){

             alert("anzhuo");

           return true;

        }

}

//判断是否为IOS设备

function isIos(){

         var u = navigator.userAgent;

         if(!!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)){

               alert("ios");

          }

}

你可能感兴趣的:(判断浏览器的类型(微信,安卓,IOS))