HTML | DOM HTML中的對象高度屬性DOM用於設置或返回對象的高度。 height屬性用於指定對象的高度。
用法:
- 它返回height屬性
objObject.height
- 用於設置height屬性。
objObject.height = pixels
屬性值:它包含值,即pixel,用於根據像素指定對象的高度。
返回值:它返回一個數值,以像素為單位表示對象的高度。
示例1:本示例返回height屬性。
<!DOCTYPE html>
<html>
<body>
<center>
<object id="myobject"
width="400"
height="200"
data=
"https://media.geeksforgeeks.org/wp-content/uploads/geek-8.png">
</object>
<h2>DOM Object height Property</h2>
<p>Click the button to get the
height of the embedded file.</p>
<button onclick="Geeks()">
Click it
</button>
<p id="gfg"
style="color:green;
font-size:25px;">
</p>
</center>
<script>
function Geeks() {
// Accessing Object element.
var x =
document.getElementById(
"myobject").height;
document.getElementById(
"gfg").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例設置height屬性。
<!DOCTYPE html>
<html>
<body>
<center>
<object id="myobject"
width="400"
height="200"
data=
"https://media.geeksforgeeks.org/wp-content/uploads/geek-8.png">
</object>
<h2>DOM Object height Property
</h2>
<p>Click the button to change
the height of the embedded file.</p>
<button onclick="Geeks()">
Click it
</button>
<p id="gfg"
style="color:green;
font-size:25px;">
</p>
</center>
<script>
function Geeks() {
// Accessing Object element.
var x =
document.getElementById(
"myobject").height = "150";
document.getElementById(
"gfg").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:
- 穀歌瀏覽器
- 火狐瀏覽器
- Edge
- Safari
- Opera
相關用法
- HTML <object> height屬性用法及代碼示例
- HTML IFrame height用法及代碼示例
- HTML embed height用法及代碼示例
- HTML Screen height用法及代碼示例
- HTML Video height用法及代碼示例
- HTML Style height用法及代碼示例
- HTML input image height用法及代碼示例
- HTML Object name用法及代碼示例
- HTML Object data用法及代碼示例
- HTML Object width用法及代碼示例
- HTML Object type用法及代碼示例
- HTML Object form用法及代碼示例
- CSS height屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Object Height Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。