上一次我發(fā)了一篇文章叫“微信打開網(wǎng)址添加在瀏覽器中打開提示”,里面我發(fā)出來了三個代碼,分別是純JS、js+html、jQuery+HTML代碼。今天來一個簡化版帶可以關(guān)閉的按鈕操作。使用的是純JS+HTML+CSS結(jié)合的方式,但不要一進入微信就彈出提示它在新瀏覽器中打開,在這個頁面里面還可以提交表單查看信息等,只有它點擊應(yīng)用的鏈接后,才彈出提示它跳轉(zhuǎn)后下載。
<a id="J_weixin" class="android-btn" href="#"><img src="img/android-btn.png" alt="微信掃描打開APP下載鏈接提示代碼優(yōu)化" alt="安卓版下載" /></a><div id="weixin-tip"><p><img src="img/live_weixin.png" alt="微信掃描打開APP下載鏈接提示代碼優(yōu)化" alt="微信打開"/><span id="close" title="關(guān)閉" class="close">×</span></p></div>
#weixin-tip{display:none;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%;position:relative;}#weixin-tip .close{color:#fff;padding:5px;font:bold 20px/24px simsun;text-shadow:0 1px 0 #ddd;position:absolute;top:0;left:5%;}
// var is_weixin = (function() { //判斷微信UA// var ua = navigator.userAgent.toLowerCase();// if (ua.match(/MicroMessenger/i) == "micromessenger") {// return true;// } else {// return false;// }// })();var is_weixin = (function(){return navigator.userAgent.toLowerCase().indexOf('MicroMessenger') !== -1})();window.onload = function() { var winHeight = typeof window.innerHeight != 'undefined' ? window.innerHeight : document.documentElement.clientHeight; //兼容IOS,不需要的可以去掉 var btn = document.getElementById('J_weixin'); var tip = document.getElementById('weixin-tip'); var close = document.getElementById('close'); if (is_weixin) { btn.onclick = function(e) { tip.style.height = winHeight + 'px'; //兼容IOS彈窗整屏 tip.style.display = 'block'; return false; } close.onclick = function() { tip.style.display = 'none'; } }}
聯(lián)系客服