问题描述
contentDocument"对于 iframe(甚至旧的frame"元素)究竟代表什么?它相当于html"元素还是body"元素?它有什么用?是否所有浏览器都支持此属性?
What exactly does "contentDocument" represent for an iframe (or even the old "frame" element)? Is it equivalent to the "html" element or the "body" element ?What is it's use?And is this property supported across all the browsers?
推荐答案
Document 类型的 contentDocument,只读,在 DOM Level 2 中引入此框架包含的文档(如果有并且可用),否则为 null.
从 DOM iframe 元素,脚本可以通过 contentWindow 属性访问包含的 HTML 页面的 window 对象.contentDocument 属性指的是 iframe 内的文档元素(相当于 contentWindow.document),但 IE8 之前的 Internet Explorer 版本不支持.
此页面或框架包含的文档
此属性是 Windows Internet Explorer 8 中的新属性
因此要获取您可以使用的 body 元素的innerHTML
So to get the innerHTML of the body element you could use
iframe.contentDocument.getElementsByTagName("body")[0]
或
iframe.contentDocument.body
在当今的浏览器中.
这篇关于iframe 的 contentDocument的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!