HTML DOM中的Input Image width屬性用於返回<input type =” image”>的width屬性的值。
用法:
- 要返回width屬性。
imageObject.width
- 設置width屬性。
imageObject.width = value;
屬性值:它包含一個數值,以像素為單位指定圖像的寬度。
返回值:它返回一個代表圖像寬度的數值。
範例1:本示例返回輸入圖像寬度屬性。
<!DOCTYPE
<html>
<head>
<title>
HTML DOM Input Image width Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image width Property
</h4>
<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").width;
document.getElementById(
"Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
範例2:本示例設置“輸入圖像寬度”屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image width Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image width Property
</h4>
<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").width = "96";
document.getElementById(
"Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:下麵列出了HTML DOM輸入圖像寬度屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Opera
- Safari
相關用法
- HTML Input Image alt用法及代碼示例
- HTML Input Image value用法及代碼示例
- HTML Input Image name用法及代碼示例
- HTML Input Image src用法及代碼示例
- HTML Input Image formNoValidate用法及代碼示例
- HTML input image height用法及代碼示例
- HTML Input Image formTarget用法及代碼示例
- HTML Input Image type用法及代碼示例
- HTML Input Image formEnctype用法及代碼示例
- HTML Input image autofocus用法及代碼示例
- HTML Input Image form用法及代碼示例
- HTML Input Image disabled用法及代碼示例
- HTML Input Image formAction用法及代碼示例
- HTML Input Image formMethod用法及代碼示例
- CSS border-image-width用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Image width Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。