iframe 通信
2025年3月21日...小于 1 分钟
iframe 通信
主页面为 parent.html
,iframe 页面为 child.html
。
主页面向 iframe 页面发送消息
<iframe src="./child.html" id="childIframe"></iframe>
<script>
// 获取子页面的iframe
const childIframe = document.getElementById("childIframe");
// 向子页面发送消息
childIframe.addEventListener("load", () => {
childIframe.contentWindow.postMessage("hello", "*"); // 第二个参数用于指定发送的域
});
</script>
<script>
window.addEventListener("message", (event) => {
console.log(event.data); // 接收到消息
});
</script>
iframe 页面向主页面发送消息
<script>
window.parent.postMessage("hello", "*"); // 发送消息给父页面
</script>
<iframe src="./child.html" id="childIframe"></iframe>
<script>
window.addEventListener("message", (event) => {
console.log(event.data); // 接收到消息
});
</script>