Iframe通讯

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>


转载于:https://www.jianshu.com/p/7a328a86b6f0

猜你喜欢

转载自blog.csdn.net/weixin_34119545/article/details/91056677