您好,登錄后才能下訂單哦!
微信中打開鏈接時,彈出遮罩提示用戶,請點擊右上角在瀏覽器中打開如何實現?經搜集整理并且驗證可用后總結出可用版本,給有需要的猿友
以下是代碼部分:
第一步:判斷微信的UA。
var ua = navigator.userAgent;
var isWeixin =? !!/MicroMessenger/i.test(ua);
第二步:引入默認隱藏層。
<a id="JdownApp">點擊下載APP</a>
<a id="JdownApp2" class="btn-warn">點擊下載APP2</a>
<div class="wxtip" id="JweixinTip">
<span class="wxtip-icon"></span>
<p class="wxtip-txt">點擊右上角<br/>選擇在瀏覽器中打開</p>
</div>
第三步:添加CSS樣式
.wxtip{background: rgba(0,0,0,0.8); text-align: center; position: fixed; left:0; top: 0; width: 100%; height: 100%; z-index: 998; display: none;}
.wxtip-icon{width: 52px; height: 67px; background: url(weixin-tip.png) no-repeat; display: block; position: absolute; right: 20px; top: 20px;}
.wxtip-txt{margin-top: 107px; color: #fff; font-size: 16px; line-height: 1.5;}
第四步:點擊按鈕顯示隱藏層,點擊隱藏層關閉,總的JS代碼如下:
function weixinTip(ele){
var ua = navigator.userAgent;
var isWeixin = !!/MicroMessenger/i.test(ua);
if(isWeixin){
ele.οnclick=function(e){
window.event? window.event.returnValue = false : e.preventDefault();
document.getElementById('JweixinTip').style.display='block';
}
document.getElementById('JweixinTip').οnclick=function(){
this.style.display='none';
}
}
}
var btn1 = document.getElementById('JdownApp');//下載一
weixinTip(btn1);
var btn2 = document.getElementById('JdownApp2'); //下載二
weixinTip(btn2);
以上代碼,你再也不用擔心有多個按鈕了。
全部代碼演示:http://www.pushtool.cn/zhezhao/demo3
號外:這是微信中點擊按鈕才會提示在瀏覽器中打開遮罩的版本,還有:打開頁面直接顯示提示、安卓和蘋果顯示不同提示等其他版本。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。