如何在微信复制链接直接可以用浏览器打开 微信调用手机浏览器打开指定链接
Posted zzzzwwqq12sa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在微信复制链接直接可以用浏览器打开 微信调用手机浏览器打开指定链接相关的知识,希望对你有一定的参考价值。
由于微信的限制,微信内置浏览器中很多链接全部被屏蔽掉,,界面显示屏蔽,
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>下载示例</title>
<style type="text/css">
#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%;
}
</style>
</head>
<body>
<div id="weixin_tip" style="width: 100%; height: 100%;">
<p>
<img src="live_weixin.png" alt="微信打开" style="width: 100%; height: 100%;" />
</p>
</div>
</body>
<script type="text/javascript">
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 = "这里修改为自己的下载地址";
}
</script>
</html>
以上是关于如何在微信复制链接直接可以用浏览器打开 微信调用手机浏览器打开指定链接的主要内容,如果未能解决你的问题,请参考以下文章