alt
Area alt 属性
定义和用法
alt 属性返回可设置某个区域的 alt 属性值。
alt 属性可指定了当浏览器无法显示某个区域时所显示的替换文本。
语法
areaObject.alt=alternate_text
浏览器支持
所有主要浏览器都支持 alt 属性
实例
下面的例子可返回图像映射中 "Venus" 区域的替换文本:
<html>
<body>
<img src="planets.gif"
width="145" height="126"
usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle"
coords="124,58,8"
alt="The planet Venus"
href="venus.htm">
</map>
<p>Alternate text for Venus is:
<script>
document.write(document.getElementById("venus").alt);
</script>
</p>
</body>
</html>
<body>
<img src="planets.gif"
width="145" height="126"
usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle"
coords="124,58,8"
alt="The planet Venus"
href="venus.htm">
</map>
<p>Alternate text for Venus is:
<script>
document.write(document.getElementById("venus").alt);
</script>
</p>
</body>
</html>
以上实例输出结果:
Alternate text for Venus is: The planet Venus