主窗口正在接收来自嵌套在其中的 iframe 的消息。
window.addEventListener("message", function(e){
alert(e.data);
}, true);
我如何知道消息来自哪个 DOM 元素?问题是我在文档中有几个,它们都来自同一个域,但与主窗口不同的域。
主窗口正在接收来自嵌套在其中的 iframe 的消息。
window.addEventListener("message", function(e){
alert(e.data);
}, true);
我如何知道消息来自哪个 DOM 元素?问题是我在文档中有几个,它们都来自同一个域,但与主窗口不同的域。