首页 > 微信 > 详细

限制必须使用微信打开网页

时间:2014-11-26 15:51:11      阅读:531      评论:0      收藏:0      [点我收藏+]
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‘;
        }

限制必须使用微信打开网页

原文:http://www.cnblogs.com/luckystar2010/p/4123074.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!