IFrame height 属性
定义和用法
height 属性设置或返回 iframe 元素中的 height 属性的值。
height 属性指定 iframe 的高度。
提示: 使用 width 属性设置或返回 iframe 中宽度属性的值。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
height | Yes | Yes | Yes | Yes | Yes |
语法
返回 height 属性:
iframeObject.height
设置 height 属性:
iframeObject.height = pixels
属性值
值 | 描述 |
---|---|
pixels | 以像素为单位的高度(例如"100px"或只是"100") |
技术细节
返回值: | 字符串,表示iframe的高度,以像素为单位 |
---|
更多实例
实例
更改 iframe 的高度和宽度:
document.getElementById("myFrame").height = "400";
document.getElementById("myFrame").width = "400";
亲自试一试 »
相关页面
HTML 参考手册: HTML <iframe> height 属性
❮ IFrame Object