如何在 Firefox 中从 Iframe 获取元素 ID?

发布于 2024-11-29 08:15:41 字数 241 浏览 0 评论 0原文

我有下面的代码来通过 ID 获取元素。如何更改此代码以跨浏览器工作?请帮我。

var home = window.document.frames["ifrmmain"].document.frames["ifrmchild"].document.getElementById("tdHome");

var homeLink = top.document.frames["ifrmmain"].tdHomeLink;

I have the code below to get an element by ID. How to change this code to work cross-browser? Please help me.

var home = window.document.frames["ifrmmain"].document.frames["ifrmchild"].document.getElementById("tdHome");

var homeLink = top.document.frames["ifrmmain"].tdHomeLink;

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

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

发布评论

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

评论(2

娇女薄笑 2024-12-06 08:15:41

id 属性放在 iframe 标记上,并在访问框架文档时将 document 替换为 contentDocument。例如:

var home = document.getElementById('ifrmmain').contentDocument.getElementById('ifrmchild').contentDocument.getElementById("tdHome");

Put id attributes on your iframe tags, and replace document with contentDocument when accessing the document of a frame. For example:

var home = document.getElementById('ifrmmain').contentDocument.getElementById('ifrmchild').contentDocument.getElementById("tdHome");
以酷 2024-12-06 08:15:41

window.frames[0].document.getElementById('btnSave').click();
或者
window.frames['iframename'].document.getElementById('btnSave').click();

window.frames[0].document.getElementById('btnSave').click();
or
window.frames['iframename'].document.getElementById('btnSave').click();

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