首页 > 代码库 > 判断是否是微信平台

判断是否是微信平台

// 判断是否是微信平台function is_weixin() {    var ua = navigator.userAgent.toLowerCase();    if (ua.match(/MicroMessenger/i) == "micromessenger") {        return true;    } else {        return false;    }}// 微信上提示用户下载 app 所要做的操作if (is_weixin()) {    var weixin_prepend_link = ‘http://mp.weixin.qq.com/mp/redirect?url=‘;    $weixin_download_tip_wrapper.append(‘<div class="weixin-download-tip"><b>应用下载贴士:</b>请点击右上角的跳转按钮<br>选择<b>「在浏览器中打开」,进行下载</b></div>‘);    $mobile_iphone.each(function () {        var download_link = $(this).attr(‘href‘);        $(this).attr(‘href‘, weixin_prepend_link + download_link)    })}

 

判断是否是微信平台