HTML <area> alt 屬性
實(shí)例
帶有可點(diǎn)擊區(qū)域的圖像映射:
<img src="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.gif">
<area shape="circle" coords="90,58,3" alt="Mercury" href="merglobe.gif">
<area shape="circle" coords="124,58,8" alt="Venus" href="venglobe.gif">
</map>
usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.gif">
<area shape="circle" coords="90,58,3" alt="Mercury" href="merglobe.gif">
<area shape="circle" coords="124,58,8" alt="Venus" href="venglobe.gif">
</map>
嘗試一下 ?
瀏覽器支持
所有主流瀏覽器都支持 alt 屬性。
定義和用法
alt 屬性是一個(gè)必需的屬性,它規(guī)定在圖像無法顯示時(shí)的替代文本。
假設(shè)由于下列原因用戶無法查看圖像,alt 屬性可以為圖像提供替代的信息:
- 網(wǎng)速太慢
- src 屬性中的錯(cuò)誤
- 瀏覽器禁用圖像
- 用戶使用的是屏幕閱讀器
如果使用 href 屬性 alt 屬性是需要的。
HTML 4.01 與 HTML5之間的差異
在 HTML 4.01 中 alt 屬性是必須的。
在 HTML5 中, 只用使用了href 屬性 alt 屬性才是需要的。如果沒有使用href屬性,alt屬性也不需要使用。
語法
<area alt="text">
屬性值
值 | 描述 |
---|---|
text | 在圖片無法顯示的情況下指定區(qū)域的替代文本。 |
更多建議: