gpt4 book ai didi

javascript - iframe 和父站点之间如何通信?

转载 作者:IT老高 更新时间:2023-10-28 11:08:50 26 4
gpt4 key购买 nike

iframe 中的网站不在同一个域中,但两者都是我的,我想在 iframe 和父网站之间进行通信。有可能吗?

最佳答案

使用不同的域,无法直接调用方法或访问 iframe 的内容文档。

您必须使用 cross-document messaging .

父-> iframe

例如在顶部窗口中:

myIframe.contentWindow.postMessage('hello', '*');

在 iframe 中:

window.onmessage = function(e) {
if (e.data == 'hello') {
alert('It works!');
}
};

iframe -> 父级

例如在顶部窗口中:

window.onmessage = function(e) {
if (e.data == 'hello') {
alert('It works!');
}
};

在 iframe 中:

window.top.postMessage('hello', '*')

关于javascript - iframe 和父站点之间如何通信?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9153445/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com