如何回复postMessage的消息

evt.origin为消息来源frame的location.origin
evt.source为消息来源frame的window对象,通过evt.source.postMessage(message, evt.origin)即可回复消息
需要特别注意的是frame unload时发送的消息,监听方获取到的evt.source为空,此时为不可回复状态,需要处理异常,否则会中断代码逻辑

你可能感兴趣的:(javascript,postmessage)