js實如今微信中喚起本地APP

使用微信打開網址時,沒法在微信內打開經常使用下載軟件,手機APP等。網上流傳的各類微信打開下載連接,微信一更新基本失效。你們經常使用的方法是,彈出一個遮罩提示用戶在新的瀏覽器窗口打開,不再用管微信如何的更新。javascript

直接判斷微信的ua,若是是在微信內置瀏覽器中打開,彈出一個遮罩提示用戶在瀏覽器中打開下載,而且不加關閉的按鈕。這樣子用戶就只能在瀏覽器中打開,而且能夠直接下載應用了。css

css代碼java

<style type="text/css"> *{ margin:0; padding:0;
    } a{ text-decoration: none;
    } img{ max-width: 100%; height: auto;
    } .weixin-tip{ display: none; position: fixed; left:0; top:0; bottom:0; background: rgba(0,0,0,0.8); filter:alpha(opacity=80); height: 100%; width: 100%; z-index: 100;
    } .weixin-tip p{ text-align: center; margin-top: 10%; padding:0 5%;
    } </style>

 

HTML 代碼瀏覽器

<div class="weixin-tip">
    <p>
        <img src="live_weixin.png" alt="微信打開"/>
    </p>
</div>

 

JS代碼微信

<script type="text/javascript"> $(window).on("load",function(){ var winHeight = $(window).height(); function is_weixin() { var ua = navigator.userAgent.toLowerCase(); if (ua.match(/MicroMessenger/i) == "micromessenger") { return true; } else { return false; } } var isWeixin = is_weixin(); if(isWeixin){ $(".weixin-tip").css("height",winHeight); $(".weixin-tip").show(); } }) </script>

 

有個herl工具,是能夠在微信中自動打開手機瀏覽器下載APP。工具

  一、herl工具網址:http://www.fishtool.cn測試

  二、填寫下載的apk的地址,或者下載頁連接spa

  三、點擊一鍵生成,會自動生成二維碼和一個連接地址(兩個是同一個地址,根據你的須要選擇)code

  四、生成的二維碼或者連接,用微信掃一掃或者用微信打開鏈接,就能夠測試了效果了blog

 

  若是你們有更好的解決方案或者工具,歡迎推薦分享!

相關文章
相關標籤/搜索