我已经阅读了一些关于如何window.postMessage
在页面和iframe
.
我的问题是iframe
我需要从同一页面接收通知。每隔一段时间,iframe's
DOM 就会被修改以包含通知。我希望这些通知从iframe
页面本身传播出去。如何做到这一点window.postMessage
?
这是场景:
<html>
<head>
<title></title>
</head>
<body>
...need to hear events from iframe here...
<div class="container">
<iframe src="http://example.com">..(stuff happens in here)..</iframe>
</div>
</body>
</html>
假设我可以编辑iframe's
代码以发送我想要的任何事件,自定义事件会像那样工作还是由于跨域策略而无法传播?