js实现只能在微信里打开链接

function is_weixin(){
    var ua = navigator.userAgent.toLowerCase(); //判断浏览器的类型
    if(ua.match(/MicroMessenger/i)=="micromessenger") {
        return true;
    } else {
        return false;
    }
}

if (!is_weixin()) { // 如果不是微信内置浏览器,就动态跳转到以下页面
    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';
}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_36302575/article/details/88903862