js微信支付实现代码
程序员文章站
2022-05-18 17:28:57
本文实例为大家分享了js微信支付的具体代码,供大家参考,具体内容如下
...
本文实例为大家分享了js微信支付的具体代码,供大家参考,具体内容如下
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="format-detection" content="telephone=no" /> <title>微信支付</title> <script type="text/javascript" src="/js/jquery.min.js"></script> <script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script> </head> <body> <script> //调用微信js api 支付 function jsapicall() { weixinjsbridge.invoke( "getbrandwcpayrequest", {$parms}, //下面是支付完成后的回调,可以直接提示成功 function(res) { if(res.err_msg == "get_brand_wcpay_request:ok") { location.href = "{$success_url}"; }else if(res.err_msg == "get_brand_wcpay_request:cancel"){ // history.back(); location.href = "{$fail_url}"; }else{ alert("weixin return:" + json.stringify(res)); // alert(res.err_msg+" 参数有误,请返回!"); // history.back(); location.href = "{$fail_url}"; } } ); } function callpay() { if (typeof weixinjsbridge == "undefined"){ if( document.addeventlistener ){ document.addeventlistener('weixinjsbridgeready', jsapicall, false); }else if (document.attachevent){ document.attachevent('weixinjsbridgeready', jsapicall); document.attachevent('onweixinjsbridgeready', jsapicall); } }else{ jsapicall(); } } callpay(); </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。