因为微信端不能下载软件的原因,我们经常需要打开浏览器再去下载,那么这时候就需要有一个提示框提示我们通过浏览器打开,同时用浏览器打开的时候这个框消失。
window.onload = function(){
if(isWeiXin()){
var shade = document.getElementById('shade')
shade.style.display = 'block'
}
}
function isWeiXin(){
var ua = window.navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
return true;
}else{
return false;
}
}