HTML DOM輸入圖像的alt屬性用於設置或返回輸入圖像的alt屬性的值。 alt屬性用於指定圖像的備用文本。不顯示圖像時很有用。它用於為圖像提供替代信息。
用法:
- 它返回alt屬性。
imageObject.alt
- 用於設置alt屬性。
imageObject.alt = text
屬性值:包含值,即為輸入Image指定替代文本的文本。
返回值:它返回一個字符串值,該字符串值表示輸入圖像的替代文本。
範例1:本示例返回alt屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image alt Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image alt Property
</h4>
<input id="myImage" formEnctype="application/x-www-form-urlencoded"
type="image" formtarget="#" src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Geeks_Logo" width="48" height="48" formMethod="post"
autofocus>
<br>
<br>
<button onclick="my_geek()">Submit </button>
<h2 id="Geek_h" style="color:green;"></h2>
<script>
function my_geek() {
// set Disabled Property.
var txt = document.getElementById(
"myImage").alt;
document.getElementById(
"Geek_h").innerHTML = txt;
}
</script>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
範例2:本示例設置alt屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Image alt Property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h4>
DOM Input Image alt Property
</h4>
<input id="myImage" formEnctype="application/x-www-form-urlencoded"
type="image" formtarget="#" src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Geeks_Logo" width="48" height="48" formMethod="post"
autofocus>
<br>
<br>
<button onclick="my_geek()">Submit </button>
<h2 id="Geek_h" style="color:green;">
</h2>
<script>
function my_geek() {
// set Disabled Property.
var txt = document.getElementById(
"myImage").alt = "submit";
document.getElementById(
"Geek_h").innerHTML =
"The alt Attribute was changed to " + txt;
}
</script>
</body>
</html>
輸出:
- 在單擊按鈕之前:
- 單擊按鈕後:
支持的瀏覽器:下麵列出了HTML DOM Input Image alt屬性支持的瀏覽器:
- Googl Chrome 10.0
- Firefox 4.0
- Opera 11.0
- Safari 5.1
相關用法
- HTML Input Image src用法及代碼示例
- HTML Input Image value用法及代碼示例
- HTML Input Image name用法及代碼示例
- HTML Input Image type用法及代碼示例
- HTML Input Image disabled用法及代碼示例
- HTML Input image autofocus用法及代碼示例
- HTML Input Image width用法及代碼示例
- HTML Input Image formNoValidate用法及代碼示例
- HTML Input Image formMethod用法及代碼示例
- HTML Input Image form用法及代碼示例
- HTML Input Image formEnctype用法及代碼示例
- HTML Input Image formAction用法及代碼示例
- HTML Input Image formTarget用法及代碼示例
- HTML input image height用法及代碼示例
- HTML DOM Input Image用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Image alt Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。