如何在包含 iframe、frame、frameset 的页面中通过 id 获取元素?

发布于 2024-11-29 16:33:55 字数 218 浏览 2 评论 0原文

我有一个包含许多子项的页面,例如 iframeframesetframe 等。

我想要一个像 document.getElementById 这样的函数(targetId) 返回一个元素,但也会在所有框架的文档中进行搜索。

我更喜欢一个不需要任何扩展的解决方案,比如 jQuery。

I have a page that contains many children such as iframe, frameset, frame etc.

I would like a function like document.getElementById(targetId) that returns an element, but also searches in the documents of all frames.

I would prefer a solution that doesn't require any extentions like jQuery.

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

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

发布评论

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

评论(1

倾城泪 2024-12-06 16:33:55

您可以

my_iframe_reference.contentDocument.getElementById(targetId)

在单个框架中按 id 进行搜索。

如果您想搜索所有框架,您可以迭代 window.frames 数组。

for(var i=0; i<window.frames.length; i++){
    var node = window.frames[i].contentDocument.getElementById('id');
    if(node) return node;
}

You can do

my_iframe_reference.contentDocument.getElementById(targetId)

to search by id in a single frame.

If you want to search on all the frames you can iterate over the window.frames array.

for(var i=0; i<window.frames.length; i++){
    var node = window.frames[i].contentDocument.getElementById('id');
    if(node) return node;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文