js判断运行平台

function platform(){
    var ua = window.navigator.userAgent.toLowerCase(); 
    var isAndroid = ua.indexOf('android') > -1 || ua.indexOf('adr') > -1; //android终端
    var isiOS = !!u.match(/\(i[^;]+;( u;)?cpu.+mac os x/);//ios终端
    if(ua.match(/MicroMessenger/i) == 'micromessenger'){
       //在微信中打开
    }else if(isAndroid ){
      //android终端打开
   }else if(isiOS){
      //isiOS终端打开
   }  
}

你可能感兴趣的:(js判断运行平台)