Opera 11.x 中的 html 5 postmessage

发布于 2024-12-03 11:15:25 字数 784 浏览 3 评论 0原文

我在 iframe 中使用这样的构造将其高度发送到父窗口:

<body onload="parent.postMessage(document.body.scrollHeight, '*');">
    ...
</body>

父窗口中有一个侦听器:

function resizeCrossDomainIframe(id)
{
    var iframe = document.getElementById(id);
    window.addEventListener('message', function (event)
    {
        if (isNaN(event.data)) return;
        var height = parseInt(event.data);
        iframe.height = height + "px";
    }, false);
}

<iframe id="voice-iframe" scrolling="no" frameborder="0" onload="resizeCrossDomainIframe('voice-iframe');" src="http://localhost:2040/VoiceApi/Base">
</iframe>

此代码适用于 ff、chrome、safari、ie9,可能适用于 ie8,但不适用于 Opera 11(尽管没有显示错误)蜻蜓)。 我认为 ie 会出现一些问题,但 Opera 的最新版本不会出现问题。 或者也许我做错了?

i use such construction in iframe to send its height to parent window:

<body onload="parent.postMessage(document.body.scrollHeight, '*');">
    ...
</body>

there is a listener in parent window:

function resizeCrossDomainIframe(id)
{
    var iframe = document.getElementById(id);
    window.addEventListener('message', function (event)
    {
        if (isNaN(event.data)) return;
        var height = parseInt(event.data);
        iframe.height = height + "px";
    }, false);
}

<iframe id="voice-iframe" scrolling="no" frameborder="0" onload="resizeCrossDomainIframe('voice-iframe');" src="http://localhost:2040/VoiceApi/Base">
</iframe>

this code works in ff, chrome, safari, ie9, probably in ie8, but not in opera 11 (though no errors are shown in dragonfly).
i thought there will be some problems with ie but not with the last version of opera.
or maybe i'm doing smth wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装纯掩盖桑 2024-12-10 11:15:25

我认为 onload 首先在 IFRAME 内部触发,然后 postMessage() 会导致消息事件发生,最后 IFRAME 上的 onload 属性将触发。如果您从 IFRAME 标记的 onload 处理程序添加事件侦听器,您可能会在消息发送后开始侦听消息,因此您不会收到任何内容。

I think onload fires inside the IFRAME first, postMessage() will then cause a message event to happen, and then finally the onload attribute on the IFRAME will trigger. If you add the event listener from the IFRAME tag's onload handler, you'll probably start listen for the message after it was sent, so you won't receive anything.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文