美文网首页
Iframe直接通讯

Iframe直接通讯

作者: SWLB | 来源:发表于2019-06-05 23:03 被阅读0次
    child.html
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
    <body><h2>子页面</h2>
    </body>
    <script>
        window.addEventListener('message', function (event) {
            console.log(event);
            alert(event.data);
        }, false);
    </script>
    </html>
    

    main.html

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
    <body>
    <iframe id="child" src="./iframepage.html"></iframe>
    <script>
        window.onload = function () {
         document.getElementById('child').contentWindow.postMessage("lllllllllllllllll", "*")
        }
    </script>
    
    </body>
    </html>
    
    
    

    相关文章

      网友评论

          本文标题:Iframe直接通讯

          本文链接:https://www.haomeiwen.com/subject/peyexctx.html