gpt4 book ai didi

javascript - 获取有关 iframe 加载的通知

转载 作者:行者123 更新时间:2023-11-28 08:18:09 25 4
gpt4 key购买 nike

我正在开发一个扩展,每当 iframe 加载并准备就绪时我都需要收到通知。我使用了 page-mod 但没有得到预期的输出。这是我的代码:

var data = require("sdk/self").data;
var pageMod = require("sdk/page-mod");

pageMod.PageMod({
include: ['*'],
contentScriptFile: data.url("pageNavData.js"),
contentScriptWhen: "ready",
attachTo: ["frame"],
onAttach: function(worker) {
worker.port.on("gotElement", function(elementContent) {
console.log(elementContent);
});
}
});

pageNavData.js是:

self.port.emit("gotElement", document.location.href);

谁能看出这有什么问题吗?

最佳答案

这里的问题是在附加监听器之前发出“gotElement”消息。

您可以通过以下方式修复它:

setTimeout(_ => self.port.emit("gotElement", document.location.href));

事实上您不需要 contentScript,只需在 onAttach 处理程序中执行您想要执行的操作即可。

关于javascript - 获取有关 iframe 加载的通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23358771/

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