paySuccess.html 651 B

12345678910111213141516171819202122
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
  5. <meta http-equiv="Expires" CONTENT="0">
  6. <meta http-equiv="Cache-Control" CONTENT="no-cache">
  7. <meta http-equiv="Pragma" CONTENT="no-cache">
  8. <title>微信支付成功</title>
  9. </head>
  10. <body style="width:100%;height:100%;text-align: center;">
  11. <div>
  12. <script>
  13. document.addEventListener("WeixinJSBridgeReady", function() {
  14. WeixinJSBridge.invoke("closeWindow", {}, function(e) {});
  15. });
  16. </script>
  17. </div>
  18. </body>
  19. </html>