判断是否是微信打开

Posted quitpoison

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断是否是微信打开相关的知识,希望对你有一定的参考价值。

$(window).load(function () {

    var isweixin = is_weixin();
    if (isweixin) {
        var guid = GetQueryString("itemId");
        window.location.href = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx7359c49ea4a34c8f&redirect_uri=http%3a%2f%2fwxyyb.biotecan.com%2fxuexi%2findex.php%2fHome%2fProductDetail%2fproductdetail%2fproductDetail%2f" +
        guid + ‘.html&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect‘;


    }
    $(‘body‘).addClass(‘loaded‘);
    $(‘#loader-wrapper‘).remove();

});

//获取链接参数
function GetQueryString(name) {
    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
    var r = window.location.search.substr(1).match(reg);
    if (r != null) return unescape(r[2]); return null;
}
function is_weixin() {
    var ua = window.navigator.userAgent.toLowerCase();
    if (ua.match(/MicroMessenger/i) == "micromessenger") {   //判断是否是微信打开
        return true;
    } else {
        return false;
    }

 

以上是关于判断是否是微信打开的主要内容,如果未能解决你的问题,请参考以下文章

判断是否是微信打开

判断是否是微信浏览器JavaScript代码

php判断是否是微信浏览器

php判断浏览器是微信还是pc(电脑)

如何判断微信内建浏览器 MicroMessenger

PHP判断是否是微信浏览器访问的方法