HTML DOM中的輸入圖像高度用於設置或返回<input type =” image”>的height屬性的值。
用法:
- 它返回height屬性。
imageObject.height
- 它設置height屬性。
imageObject.height = value;
屬性值:它包含一個數值,以像素為單位指定圖像的高度。
返回值:它返回一個代表圖像高度的數值。
例:本示例返回Input Image height屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image height Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input Image height Property
</h2>
<button onclick="my_geek()">
<input id="myImage"
type="image"
src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit"
formaction="#"
formtarget="#"
formenctype="text/plain"
width="48"
height="48">
</button>
<h2 id="Geek_h"
style="color:green;">
</h2>
<script>
function my_geek() {
// Return formTarget,
// formEnctype and formAction.
var txt = document.getElementById(
"myImage").height;
document.getElementById(
"Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例設置“輸入圖像高度”屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image height Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input Image height Property</h2>
<button onclick="my_geek()">
<input id="myImage"
type="image"
src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit"
formaction="#"
formtarget="#"
formenctype="text/plain"
width="48"
height="48">
</button>
<h2 id="Geek_h"
style="color:green;">
</h2>
<script>
function my_geek() {
// Return formTarget,
// formEnctype and formAction.
var txt = document.getElementById(
"myImage").height = 96;
document.getElementById(
"Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:DOM輸入圖像的高度屬性支持的瀏覽器如下:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- 蘋果Safari
- Opera
相關用法
- HTML Input Image alt用法及代碼示例
- HTML Input Image value用法及代碼示例
- HTML Input Image name用法及代碼示例
- HTML Input Image src用法及代碼示例
- HTML Input Image formAction用法及代碼示例
- HTML Input Image form用法及代碼示例
- HTML Input Image disabled用法及代碼示例
- HTML Input Image type用法及代碼示例
- HTML Input Image width用法及代碼示例
- HTML Input Image formEnctype用法及代碼示例
- HTML Input Image formTarget用法及代碼示例
- HTML Input image autofocus用法及代碼示例
- HTML Input Image formMethod用法及代碼示例
- HTML Input Image formNoValidate用法及代碼示例
- HTML <input> height屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM input image height Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。