pay.html 556 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>支付宝</title>
  8. </head>
  9. <body>
  10. <div id="alipay"></div>
  11. </body>
  12. <script>
  13. const { ipcRenderer } = require('electron')
  14. window.onload = () => {
  15. ipcRenderer.on('send-data', (event, arg) => {
  16. document.getElementById('alipay').innerHTML = arg
  17. document.forms.alipay_submit.submit()
  18. })
  19. }
  20. </script>
  21. </html>