<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>父页面 (System A)</title>
</head>
<body>
<h2>父页面 (System A)</h2>
<iframe id="childFrame" src="child.html" width="600" height="300"></iframe>
<p>收到来自子页面的消息:<span id="msgDisplay">(等待中...)</span></p>
<button onclick="sendToChild()">向子页面发送消息</button>
<script>
const childFrame = document.getElementById("childFrame");
// 监听来自 iframe 的消息
window.addEventListener("message", function(event) {
if (event.origin !== window.origin && event.origin !== "null") {
console.warn("非法来源:", event.origin);
return;
}
console.log("✅ 父页面收到消息:", event.data);
document.getElementById("msgDisplay").innerText = JSON.stringify(event.data);
});
// 向子页面发送消息
function sendToChild() {
const message = {
type: "parentToChild",
data: { text: "你好,子页面!我是父页面。" }
};
childFrame.contentWindow.postMessage(message, "*"); // 实际部署时指定 origin
}
</script>
</body>
</html>

Code_Geo
- 粉丝: 1213
最新资源
- 毕业设计-Springboot+Vue网上试衣镜服装穿搭网站含详细文档.zip
- 毕业设计-SpringBoot+Vue在线群聊系统源码+数据库最新开发包.zip
- 毕业设计-SSM网上订餐系统源码+数据库搭建教程与项目报告.zip
- 毕业设计-SpringBoot背单词系统+含源码详细文档+部署教程.zip
- 毕业设计-STM32智能家居系统源码+论文+详细文档(高分毕设).zip
- 毕业设计-STM32 SLAM机器人移动底盘设计与实现+含源码和详细文档.zip
- 毕业设计-STM32心率脉搏监测健康运动计步系统设计源码+报告.zip
- 毕业设计-STM32智能晾衣架项目+源码及设计报告(高分必备).zip
- 毕业高分设计-STM32智能家居系统综合设计与实现含源码程序+文档全部资料.zip
- 毕业设计-SysY到RISC-V编译器C++源码+实践报告高分项目.zip
- 毕业设计-Transformer聊天机器人源码+运行手册+完整设计文档(Python实现).zip
- 【单片机设计】单片机设计 基于C语言的采集与发射系统设计与实现的详细项目实例(含模型描述及示例代码)
- (源码)基于Spring Boot框架的旅游网站系统.zip
- 【基于C++的甜品店管理系统】基于C++的甜品店管理系统设计和实现的详细项目实例(含模型描述及示例代码)
- 仿好孩子育儿网手机wap社区网站模板适合社区论坛项目
- (源码)基于Spring框架的疫苗预约系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


