在 JavaScript 中迭代框架集?
如何使用 JavaScript 列出 HTML 文档中的所有 FRAMESET
元素?我相信可以在 DOM 树中选择这些元素,因为 DOM 检查器Firefox 的 插件能够列出页面中的所有FRAMESETS
。
How can I list all FRAMESET
elements in an HTML document using JavaScript? I believe it to be possible to select these elements in the DOM tree because the DOM Inspector plugin for Firefox is able to list all the FRAMESETS
in a page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个
window.frames
集合,如果是的话你是什么意思。编辑:
啊。要清除所有
frameset
元素,getElementsByTagName
:
或者 jQuery,显然:
There's a
window.frames
collection, if that's what you mean.EDIT:
Ah. For blowing away all
frameset
elements,getElementsByTagName
:Or jQuery, obviously: