目录

HTML DOM iframe 对象


IFrame对象

IFrame 对象表示 HTML <iframe> 元素。

访问 IFrame 对象

您可以使用 getElementById() 访问 <iframe> 元素:

示例

var x = document.getElementById("myFrame");
亲自试一试 »

提示:您还可以使用以下方式访问 <iframe> 元素窗框属性。

创建 IFrame 对象

您可以使用 document.createElement() 方法创建 <iframe> 元素:

示例

var x = document.createElement("IFRAME");
亲自试一试 »

IFrame 对象属性

Property Description
align Not supported in HTML5. Use style.cssFloat instead.
Sets or returns the value of the align attribute in an iframe
contentDocument Returns the document object generated by an iframe
contentWindow Returns the window object generated by an iframe
frameBorder Not supported in HTML5. Use style.border instead.
Sets or returns the value of the frameborder attribute in an iframe
height Sets or returns the value of the height attribute in an iframe
longDesc Not supported in HTML5.
Sets or returns the value of the longdesc attribute in an iframe
marginHeight Not supported in HTML5. Use style.margin instead.
Sets or returns the value of the marginheight attribute in an iframe
marginWidth Not supported in HTML5. Use style.margin instead.
Sets or returns the value of the marginwidth attribute in an iframe
name Sets or returns the value of the name attribute in an iframe
sandbox Returns the value of the sandbox attribute in an iframe
scrolling Not supported in HTML5.
Sets or returns the value of the scrolling attribute in an iframe
seamless Sets or returns whether an iframe should look like it is a part of the containing document (no borders or scrollbars), or not
src Sets or returns the value of the src attribute in an iframe
srcdoc Sets or returns the value of the srcdoc attribute in an iframe
width Sets or returns the value of the width attribute in an iframe

标准属性和事件

IFrame 对象还支持标准特性事件


相关页面

HTML 参考:HTML <iframe> 标签