最新的Web開發教程
 

Embed height Property

<嵌入對象

更改嵌入文件500像素的高度:

document.getElementById("myEmbed").height = "500";
試一試»

定義和用法

height屬性設置或返回的值height中的一個屬性<embed>元素。

height屬性指定嵌入的內容的高度,以像素為單位。

提示:使用寬度屬性來設置或返回的值width在屬性<embed>元素。


瀏覽器支持

屬性
height

句法

返回height屬性:

embedObject .height

設置height屬性:

embedObject .height= pixels

屬性值

描述
pixels 指定嵌入內容的以像素為單位的高度(eg height="100")

技術細節

返回值: 一個數字,表示嵌入的內容的高度,以像素為單位

更多示例

返回嵌入文件的高度:

var x = document.getElementById("myEmbed").height;

x的結果將是:

200
試一試»

改變嵌入文件到500像素的高度和寬度:

document.getElementById("myEmbed").height = "500";
document.getElementById("myEmbed").width = "500";
試一試»

相關頁面

HTML參考: HTML <embed>高度屬性


<嵌入對象