天天看点

JS关闭微信浏览器兼容苹果安卓

<script>
    setTimeout(function(){
      //关闭安卓系统
      document.addEventListener('WeixinJSBridgeReady', function(){                                  
              WeixinJSBridge.call('closeWindow'); 
          }, false);
          //关闭ios系统
          WeixinJSBridge.call('closeWindow');
       }, 10)
</script>
           

十毫秒后关闭微信浏览器(直接返回聊天界面)