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