HTMLIFrameElement.contentWindow

contentWindow 属性返回当前HTMLIFrameElementWindow对象。你可以使用这个Window 对象去访问这个 iframe 的文档和它内部的 DOM. 这个是可读属性,但是它的属性像全局Window 一样是可以操作的。

关于 contentWindow 的示例

js
var x = document.getElementsByTagName("iframe")[0].contentWindow;
//x = window.frames[0];

x.document.getElementsByTagName("body")[0].style.backgroundColor = "blue";
// this would turn the 1st iframe in document blue.

规范

Specification
HTML Standard
# dom-iframe-contentwindow

浏览器兼容性

BCD tables only load in the browser