1

我正在编写一个在网页中打开 iframe 的 Firefox 插件。我想在 iframe 中选择对象,但我无法访问内容:

var iframe = content.document.getElementById("MyBeautifulIframe");
if (iframe)
{
  var mydiv = iframe.contentDocument.getElementById("mydiv");
}

错误:TypeError:iframe.contentDocument 未定义

我尝试了 iframe.content.document.getElemen... , iframe.document.getElemen... 相同的结果。

如何访问 iframe dom?如果我看 iframe var 类型,它是[object XrayWrapper [object XULElement]],如何访问 XULElement 对象的 dom 对象?

4

1 回答 1

0

更新的答案:

看看你的代码,我想我可能已经找到了你的问题。

你正在做:

var iframe = content.document.getElementById("muzich_iframe_addcontainer");
if (iframe)
{
  if (iframe.contentDocument.getElementById("div"))
  {
    this.close_all();
  }
}

muzich_iframe_addcontainer是一个 div,而不是 iframe,所以它从来没有 contentDocument。此外,我无法通过创建 xul 元素使其工作。我必须创建 html div 和 iframe 才能使其工作。

这是代码:

var htmlns = "http://www.w3.org/1999/xhtml";
var container = document.createElementNS(htmlns,'div');
container.setAttribute("id", "muzich_iframe_addcontainer");
container.setAttribute("style", styleContainer); //styleContainer is the one you use without the background stuff
window.content.document.body.appendChild(container);

var iframe = document.createElementNS(htmlns,'iframe');
iframe.setAttribute("id", "muzich_iframe");
iframe.setAttribute("style",
    "width: 100%; height: 100%; "
);

iframe.setAttribute("src", "http://www.lifehacker.com"); // Used it as my example url
window.content.document.getElementById("muzich_iframe_addcontainer").appendChild(iframe);

然后,当您想检查关闭时,您可以:

var iframe = window.content.document.getElementById("muzich_iframe");
if (iframe)
{
  if (iframe.contentDocument.getElementById("div"))
  {
    this.close_all();
  }
}

希望这个可以为你解决。

于 2013-07-21T22:54:36.100 回答