~~~
if(pay_type.indexOf('xin_paywx') == 0||pay_type.indexOf('xin_payqq') == 0){
location.href = "/api/xinpay/index?bpprice="+res.bpprice+"&paytype="+res.paytype+"&uid="+res.uid+"&bpid="+res.bpid;
}
~~~
js判断微信
~~~
function isWeiXin() {
var ua = window.navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == 'micromessenger') {
return true;
} else {
return false;
}
}
~~~