微信屏蔽了我的APP下载链接如何处理

由于微信的限制,应用文件在内置浏览器中下载全部被屏蔽掉,造成很多人用微信扫描二维码下载时,界面显示一片空白,容易误导以为在下载呢


#weixin-tip {

position: fixed;

left: 0;

top: 0;

background: rgba(0, 0, 0, 0.8);

filter: alpha(opacity = 80);

width: 100%;

height: 100%;

z-index: 100;

}

#weixin-tip p {

text-align: center;

margin-top: 10%;

padding: 0 5%;

}

</head>

function is_weixin() {

var ua = navigator.userAgent.toLowerCase();

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

return true;

} else {

return false;

}

}

// 微信内置浏览器打开,只是显示遮罩层,其他浏览器进行连接跳转

if (is_weixin()) {

document.getElementById("weixin_tip").style.display="block";

} else {

document.getElementById("weixin_tip").style.display="none";

window.location.href = "这里修改为自己的下载地址";

}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容