當未顯示圖像屬性時,HTML <input> alt屬性用於為圖像指定替代文本。當圖像未加載顯示時,它將為用戶提供替代信息。
用法:
<input alt="text">
屬性值:它包含單值文本,用於指定未顯示圖像時的替代文本。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML Input alt Attribute
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>HTML Input alt Attribute</h2>
<input id="myImage"
type="image"
src=
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
alt="Submit"
width="48"
height="48">
</body>
</html>
輸出:
支持的瀏覽器:
- 穀歌瀏覽器
- Firefox
- Edge
- Opera
- 蘋果Safari
相關用法
- HTML for屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML max屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <input> alt Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。