用js限制網頁只能在微信內置瀏覽器或支付寶內置瀏覽器中打開

    function is_weixinOrAli(){ var ua = navigator.userAgent.toLowerCase(); //判斷瀏覽器的類型
            if (ua.match(/MicroMessenger/i) != "micromessenger" && ua.match(/Aplipay/i) != "aplipay") { // 若是不是微信內置瀏覽器,或支付寶內置瀏覽器,就動態跳轉到如下頁面
                window.location.href = "http:www.baidu.com"; //window.location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxdf3f22ebfe96b912&redirect_uri=xxx&response_type=code&scope=snsapi_base&state=hyxt#wechat_redirect';
 } }
相關文章
相關標籤/搜索