本文引自: https://blog.csdn.net/blacksource/article/details/23671667 如有侵权,告知删之
// 是否在微信浏览器打开 is_weixn(){
var ua = navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i)=="micromessenger") {
console.log('在微信')
this.wxShow = false return true;
} else {
console.log('不在微信')
this.wxShow = true return false;
} },
如果在微信的话可以显示蒙层,打开到外部链接。本项目用于引导用户在系统浏览器去下载app。