IFrame contentWindow 属性
示例
一个跨浏览器示例,演示如何更改 iframe 中包含的文档的背景颜色
var x = document.getElementById("myframe");
var y = (x.contentWindow || x.contentDocument);
if (y.document)y = y.document;
y.body.style.backgroundColor = "red";
自己尝试 »
描述
contentWindow 属性返回由 iframe 元素生成的 Window 对象(通过 window 对象,您可以访问 document 对象,然后访问任何一个文档元素)。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
contentWindow | 是 | 是 | 是 | 是 | 是 |
语法
iframeObject.contentWindow
技术细节
返回值 | 对 window 对象的引用 |
---|
更多示例
示例
另一个访问 iframe 文档以更改背景颜色的示例
var x = document.getElementById("myframe");
var y = x.contentWindow.document;
y.body.style.backgroundColor = "red";
自己尝试 »
❮ IFrame 对象