index.html 448 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Usestudio wechat pay</title>
  6. <script src="http://res.wx.qq.com/connect/zh_CN/htmledition/js/wxLogin.js"></script>
  7. </head>
  8. <body>
  9. <h1>Hello there!</h1>
  10. <div id="login_container"></div>
  11. </body>
  12. <script>
  13. let obj = new WxLogin({
  14. id: "login_container",
  15. appid: "wxb558057b16b95dd5",
  16. scope: "wxapi.1473.cn",
  17. redirect_uri: "http://wxapi.1473.cn/wechatpay",
  18. });
  19. </script>
  20. </html>