🔄 Iframe 通讯 已连接

📤 发送消息 父页面
📋 消息日志
📝 示例代码 父页面
// 创建通道 const channel = new IframeChannel(iframe) // 发送消息并等待响应 const response = await channel.publish( 'greeting', { message: 'Hello!' } ) console.log(response.data) // 监听子页面消息 channel.subscribe('notify', ({ data }) => { console.log('收到:', data) return { received: true } })
🖼️ 子页面 (iframe) child.html