判断是否是微信浏览器

function is_weixn(){

  var ua=navigator.userAgent.toLowerCase();

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

    return true;

  }else{

    return false;

判断是否是微信浏览器

  }

}

if(is_weixn()){

  console.log(“是微信内置浏览器”)

}