0

我正在用 javascript 编写一个 firefox 扩展,从该脚本中我需要使用浏览器窗口对象访问 DOM 对象。我如何实现这一目标?

当我尝试window.document.deafultView.innerHeight扩展时,我遇到了一个异常。

我不知道如何使用插件中的 window 对象访问 DOM 对象。

4

1 回答 1

2

根据http://semanticvoid.com/blog/2006/06/01/accessing-the-dom-from-within-the-firefox-extension/您可以通过以下方式访问 DOM:

// Get the content of the currently displaying window
var win = window.content;

// Access the document within the window as follows
win.document.getElementById(‘xyz’);
于 2012-07-27T11:13:36.363 回答