最新的Web开发教程
 

HTML alt Attribute


定义和用法

alt属性提供的图像备用的信息如果由于某种原因,用户不能查看它(因为连接速度慢,在一个错误src属性,或者如果用户使用屏幕阅读器)。

注: alt属性是必需的<img>元素。

注:对于<input>元素的alt属性只能与使用<input type="image">

提示:要创建一个工具提示的图像,使用title属性!


适用于

alt属性可以在下列元素一起使用:

分子 属性
<area> alt
<img> alt
<input> alt

例子

Area为例

图像映射,可点击方面:

<img src="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
试一试»

Img示例

使用指定的替代文本的图像:

<img src="smiley.gif" alt="Smiley face">
试一试»

Input示例

一个HTML form与代表提交按钮的图像:

<form action="demo_form.asp">
  First name: <input type="text" name="fname"><br>
  <input type="image" src="submit.gif" alt="Submit" width="48" height="48">
</form>
试一试»

浏览器支持

alt属性为每个元素以下浏览器支持:

元件
area Yes Yes Yes Yes Yes
img Yes Yes Yes Yes Yes
input Yes Yes Yes Yes Yes