html <map> 标签用于客户端图像映射,图像映射指带有可点击区域的一幅图像
<img> 中的 usemap 属性可引用 <map> 中的 id 或 name 属性(取决于浏览器),所以我们应同时向 <map> 添加 id 和 name 属性
<area> 元素永远嵌套在 map 元素内部,area 元素可定义图像映射中的区域
属性 | 值 | 描述 |
---|---|---|
name | mapname | 必需。为 image-map 设置的名称 |
带有可点击区域的图像映射
<img src="/static/i/img1.jpg" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun" href="/static/i/html/sun.html">
<area shape="circle" coords="90,58,3" alt="Mercury" href="/static/i/html/sun2.html">
<area shape="circle" coords="124,58,8" alt="Venus" href="/static/i/html/sun2.html">
</map>
HTML5 中, 如果 id 属性在<map> 标签中指定, 则必须同样指定 name 属性
XHTML 中,name 属性已经废弃,使用 id 属性替换它