【contentWindow】与【contentDocument】

【contentDocument】

W3C的标准告诉我们,可以通过Dom对象的contentDocument属性来返回文档对象。
doc= document.getElementById('J_mainframe' ).contentDocument
IE6,IE7都不支持,IE8开始支持,需要如此访问 document.frames['J_mainframe'].document;

【contentWindow】
contentWindow属性,这是个只读属性,返回指定的iframe的窗口对象。
它虽然不是标准的一部分,但各个主流浏览器都支持。

你可能感兴趣的:(document)