callback.html 581 B

1234567891011121314151617181920212223242526
  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. <title>Child Page</title>
  7. </head>
  8. <style>
  9. body{
  10. background-size:cover;
  11. background: url(img/loading.gif) no-repeat fixed center top;
  12. }
  13. </style>
  14. <body>
  15. <!--<h1>京东回调成功</h1>-->
  16. <script>
  17. function notifyParentAndClose() {
  18. // 向父级页面发送消息
  19. window.parent.postMessage('closeIframe', '*');
  20. }
  21. var timer = setInterval(notifyParentAndClose, 3000); // 1000 毫秒等于 1 秒
  22. </script>
  23. </body>
  24. </html>