- 0133技术站
- 联系QQ:88526
- QQ交流群
- 微信公众号
替换为在不显示图像的浏览器上显示的文本字符串。应该对文本进行措辞,以便向用户呈现与在没有替代文本的情况下显示时图像所提供的相同类型的选择。在HTML4中,此属性是必需的,但可能是空字符串(“”)。在HTML5中,仅在使用href属性时才需要此属性。
所有主流浏览器都支持 alt 属性。
在 HTML 4.01 中 alt 属性是必须的。
在 HTML5 中, 只用使用了href 属性 alt 属性才是需要的。如果没有使用href属性,alt属性也不需要使用。
<area alt="text">
值 | 描述 |
text | 在图片无法显示的情况下指定区域的替代文本。 |
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p>点击太阳或其他行星,注意变化:</p> <img src="http://ss.0133.cn/upload/image/885/902/932/1553322045901285.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" href="https://public.xp.cn/down/course_demo/html/area_tabs/sun.htm"> <area shape="circle" coords="90,58,3" alt="Mercury" href="https://public.xp.cn/down/course_demo/html/area_tabs/mercur.htm"> <area shape="circle" coords="124,58,8" alt="Venus" href="https://public.xp.cn/down/course_demo/html/area_tabs/venus.htm"> </map> </body> </html>
点击 "运行实例" 按钮查看在线实例
推荐手册