识别微信、支付宝、QQ打开

 
//微信
var ua = navigator.userAgent.toLowerCase();
if(ua.match('micromessenger')){
      return true;
 }
//识别支付宝
var browser = navigator.userAgent.toLowerCase(); if(browser.match(/Alipay/i)=="alipay"){ alert("这是支付宝打开"); }

  

//QQ内置浏览器
var ua = navigator.userAgent.toLowerCase();
if(ua.indexOf('pa qq') > -1){
      return true;
 }
原文地址:https://www.cnblogs.com/javenlee/p/9177494.html