js判断是否为微信浏览器

function is_weixn(){

  var ua = navigator.userAgent.toLowerCase();
  if(ua.match(/MicroMessenger/i)=="micromessenger") {
    return true;
  } else {
    return false;
  }
}
var wx = is_weixn();
if(wx == false){
  window.location.href = "wxError.html"
}
原文地址:https://www.cnblogs.com/summer-qd/p/9889579.html