
js判断是否是微信浏览器
<sc
function is_weixin() {
var ua = window.navigator.userAgent.toLowerCase();
if (ua.match(/MicroMessenger/i) == 'micromessenger') {
return true;
}else {
return false;
}
}
$(function(){
$("#sure").click(function(){
var rd= $('input:radio:checked').val();
if(is_weixin()){alert('是微信浏览器');
$('#form_id').attr('action','/wxpay_demo/Wxpay/example/jsapi.php');
}else{alert('不是微信浏览器');
$('#form_id').attr('action','/wxpay_demo/Wxpay/example/native.php');
}
})
})
</sc
微信jsapi在线支付演示DEMO:http://www.sucaihuo.com/php/876.html