判斷安卓還是蘋果(微信支付寶瀏覽器)下載APP

1.蘋果手機在微信支付寶內置瀏覽器打開能都直接跳轉到appstroe去下載應用
2.安卓手機在微信支付寶內置瀏覽器打開不能直接下載,需彈出浮層指導用戶通過瀏覽器打開

 downApp() {
            let ua = navigator.userAgent.toLowerCase();
            let userAgent = navigator.userAgent.toLowerCase();
            //android終端
            let isAndroid =
                ua.indexOf("Android") > -1 || ua.indexOf("Adr") > -1; //ios終端
            let isiOS = !!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
            if (isWeixinBrowser()) {
                if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
                    window.location =
                        "https://itunes.apple.com/cn/app/id1361038837";
           
                } else if (/(Android)/i.test(navigator.userAgent)) {         
                    this.showWx = true;
                }
            } else if (userAgent.match(/Alipay/i) == "alipay") {
                if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
                    window.location =
                        "https://itunes.apple.com/cn/app/id1361038837";

                 
                } else if (/(Android)/i.test(navigator.userAgent)) {
                    //android
                    this.showWx = true;
                }
            } else {
                if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
                    //ios
                    // this.ShowPop = !this.ShowPop;
                    // this.ShowDark = !this.ShowDark;
                    window.location =
                        "https://itunes.apple.com/cn/app/id1361038837";

                    // alert("ios")
                } else if (/(Android)/i.test(navigator.userAgent)) {
                    //android
                    window.location =
                        "http://pda.aixuepai.com.cn:9998/apk/amapp-ali.apk";
                }
            }

            function isWeixinBrowser() {
                return /micromessenger/.test(ua) ? true : false;
            }
        }
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
【社區(qū)內容提示】社區(qū)部分內容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發(fā)布,文章內容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內容

友情鏈接更多精彩內容