function isWeiXinOrQQ(){
  var ua = window.navigator.userAgent.toLowerCase();
  if(ua.match(/MicroMessenger/i) == 'micromessenger' || ua.match(/\sqq/i) == " qq"){
    return true;
  }else{
    return false;
   }
}

 

相关文章:

  • 2022-12-23
  • 2021-11-05
  • 2022-02-08
  • 2021-12-02
  • 2022-01-03
  • 2021-11-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2021-06-11
  • 2021-12-19
相关资源
相似解决方案