如何从文档对象访问窗口对象

发布于 2024-12-06 16:14:35 字数 440 浏览 0 评论 0原文

是否可以直接从 JavaScript 中的文档对象访问窗口对象?

例如:

// window.frames[0] returns the document object of the first frame or iframe found on the page
myFunc(window.frames[0]);

function myFunc(doc) {
  // I want to do something along these lines:
  var wnd = doc.getWindow();
  alert("Found frame: " + wnd.name);
  for (var i=0; i<wnd.frames.length; i++) {
    myFunc(wnd.frames[i]);
  }
}

抱歉,我不能使用 jQuery。

Is it possible to access the window object directly from the document object in Javascript?

For example:

// window.frames[0] returns the document object of the first frame or iframe found on the page
myFunc(window.frames[0]);

function myFunc(doc) {
  // I want to do something along these lines:
  var wnd = doc.getWindow();
  alert("Found frame: " + wnd.name);
  for (var i=0; i<wnd.frames.length; i++) {
    myFunc(wnd.frames[i]);
  }
}

I can't use jQuery for this, sorry.

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

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

发布评论

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

评论(1

段念尘 2024-12-13 16:14:35

根据 MDN 文档,您应该已经使用 window 获取窗口.frames[0]。如果您想要实际的文档,您需要获取实际的框架元素并深入研究文档。

var firstFrame = document.getElementsByTagName( "iframe" )[ 0 ];
firstFrame.contentWindow;  // The window
firstFrame.contentWindow.document;  // The document

注意:我相信 Safari 的早期版本(3.0 IIRC 之前)不支持 contentWindow

According to the MDN documentation you should already be getting the window with window.frames[0]. If you want the actual document you need to grab the actual frame element and dig into the document.

var firstFrame = document.getElementsByTagName( "iframe" )[ 0 ];
firstFrame.contentWindow;  // The window
firstFrame.contentWindow.document;  // The document

Note: I believe contentWindow isn't supported in very early versions of Safari (pre-3.0 IIRC)

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