Embed height 属性
定义和用法
height 属性设置或返回 <embed> 元素中 height 属性的值。
height 属性指定嵌入内容的高度,以像素为单位。
提示:使用 width 属性来设置或返回 <embed> 元素中宽度属性的值。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
height | Yes | Yes | Yes | Yes | Yes |
语法
返回 height 属性:
embedObject.height
设置 height 属性:
embedObject.height = pixels
属性值
值 | 描述 |
---|---|
pixels | 以像素为单位指定嵌入内容的高度(例如 height="100") |
技术细节
返回值: | 一个数字,表示嵌入内容的高度,以像素为单位 |
---|
更多实例
实例
将嵌入文件的高度和宽度更改为 500 像素:
document.getElementById("myEmbed").height = "500";
document.getElementById("myEmbed").width = "500";
亲自试一试 »
相关页面
HTML 参考手册: HTML <embed> height 属性
❮ Embed Object