Window.onmessage
时间: 2024-05-20 10:18:46 浏览: 117
ON_MESSAGE
Window.onmessage 是一个 JavaScript API,它允许在不同的窗口或 iframe 之间进行通信。当一个窗口或 iframe 接收到来自其他窗口或 iframe 的消息时,该窗口或 iframe 会触发一个 message 事件,并且可以使用 Window.postMessage() 方法向其他窗口或 iframe 发送消息。这种通信方式可以用于实现跨域通信,例如在父窗口和嵌入的 iframe 之间共享数据。在使用 Window.onmessage API 时,需要注意安全问题,确保只有预期的窗口或 iframe 能够接收和发送消息。
阅读全文