📱 子页面 (iframe)
child.html
发送消息给父页面
发送 Ping
清空日志
// 子页面代码示例
const channel = new IframeChannel(parentOrigin)
channel.subscribe('greeting', ({data}) => data)
channel.publish('notify', {msg: 'Hi!'})