1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Child Page</title>
- </head>
- <style>
- body{
- background-size:cover;
- background: url(img/loading.gif) no-repeat fixed center top;
- }
- </style>
- <body>
- <!--<h1>京东回调成功</h1>-->
- <script>
- function notifyParentAndClose() {
- // 向父级页面发送消息
- window.parent.postMessage('closeIframe', '*');
- }
- var timer = setInterval(notifyParentAndClose, 3000); // 1000 毫秒等于 1 秒
- </script>
- </body>
- </html>
|