判断扫码的时候是支付宝还是微信?怎么做
这个是判断是不是微信扫码
window.onload=function isWeiXin(){
var ua = window.navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
$(".waitWrap").removeClass("waitHide");
// return true;
}else{
// return false;
}
};
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
if(ua.match(/AlipayClient/i) == ‘alipayclient’){ 这个是判断是支付宝