HTML DOM Image height 屬性用於設置或返回 Image 元素的 height 屬性的值。 height 屬性用於以像素為單位指定圖像的高度。
用法:
它返回圖像高度屬性。
imageObject.height
它設置圖像高度屬性。
imageObject.height = pixels
屬性值:
- pixels:它以像素為單位指定圖像元素的高度
返回值:它返回一個字符串值,以像素為單位表示圖像的高度。
範例1:此示例說明如何返回圖像高度屬性。
HTML
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green">
GeeksforGeeks
</h1>
<h2>HTML DOM Image Height Property</h2>
<img id="GFG" src=
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
width="400" height="150" />
<br>
<button onclick="Geeks()">
Click me!
</button>
<p id="sudo"></p>
</center>
<script>
function Geeks() {
var g = document.getElementById("GFG").height;
document.getElementById("sudo")
.innerHTML = g + "px";
}
</script>
</body>
</html>
輸出:
範例2:下麵的代碼設置圖像高度屬性。
HTML
<!DOCTYPE html>
<html>
<body>
<center>
<h1 style="color:green">
GeeksforGeeks
</h1>
<h2>HTML DOM Image Height Property</h2>
<img id="GFG" src=
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
width="400" height="150" />
<br>
<button onclick="Geeks()">
Click me!
</button>
<p id="sudo"></p>
</center>
<script>
function Geeks() {
var g = document.getElementById(
"GFG").height = "75";
document.getElementById("sudo")
.innerHTML = g + "px";
}
</script>
</body>
</html>
輸出:
支持的瀏覽器:
- 穀歌瀏覽器
- Firefox
- IE瀏覽器
- 蘋果Safari
- Opera
相關用法
- HTML input image height用法及代碼示例
- HTML Object Height用法及代碼示例
- HTML Video height用法及代碼示例
- HTML IFrame height用法及代碼示例
- HTML embed height用法及代碼示例
- HTML Style height用法及代碼示例
- Fabric.js Image height屬性用法及代碼示例
- HTML DOM Image isMap屬性用法及代碼示例
- HTML image naturalWidth用法及代碼示例
- HTML image naturalHeight用法及代碼示例
- HTML Input Image src用法及代碼示例
- HTML Input Image width用法及代碼示例
- HTML Input Image type用法及代碼示例
- HTML Input Image name用法及代碼示例
- HTML Input Image value用法及代碼示例
- HTML Input Image formEnctype用法及代碼示例
- HTML Input Image formNoValidate用法及代碼示例
- HTML Input Image formAction用法及代碼示例
- HTML Input Image alt用法及代碼示例
- HTML Input image autofocus用法及代碼示例
- HTML Input Image disabled用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML DOM Image height Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。