【微信开发】判断是否是微信Webview访问

   收录一个判断是否是微信Webview打开:

function is_weixin(){
     var ua = navigator.userAgent.toLowerCase();
     // /i忽略大小写
     if(ua.match(/MicroMessenger/i) == "micromessenger"){
           return true;
     }

      return false;
}

   扩展阅读:

   http://blog.wpjam.com/m/is_weixin/#toc-2

   http://blog.ammrli.com/?p=1175

相关推荐