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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。