HTML <map> 标签

HTML 标签用于客户端图像映射,图像映射指带有可点击区域的一幅图像。 标签支持 全局属性,并且支持标签支持所有HTML 事件属性


实例

带有可点击区域的图像映射:

  1. <html>
  2. <body>
  3. <p>请点击图像上的星球,把它们放大。</p>
  4. <img src="/images/eg_planets.jpg" border="0" usemap="#planetmap" alt="Planets">
  5. <map name="planetmap" id="planetmap">
  6. <area shape="circle" coords="180,139,14" href="/example/html/venus.html" target="_blank" alt="Venus">
  7. <area shape="circle" coords="129,161,10" href="/example/html/mercur.html" target="_blank" alt="Mercury">
  8. <area shape="rect" coords="0,0,110,260" href="/example/html/sun.html" target="_blank" alt="Sun">
  9. </map>
  10. <p><b>注释:</b>img 元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p>
  11. </body>
  12. </html>

浏览器支持

元素
<map>YesYesYesYesYes

所有主流浏览器都支持 <map> 标签。


定义和用法

定义一个客户端图像映射。

图像映射(image-map)指带有可点击区域的一幅图像。


HTML 与 XHTML 之间的差异


提示和注释:

注释:area 元素永远嵌套在 map 元素内部。area 元素可定义图像映射中的区域。

注释:<img>中的 usemap 属性可引用 <map> 中的 id 或 name 属性(取决于浏览器),所以我们应同时向 <map> 添加 id 和 name 属性。


必需的属性

属性描述
idunique_name为 map 标签定义唯一的名称。

可选的属性

属性描述
namemapname为 image-map 规定的名称。

全局属性

<map> 标签支持 HTML 中的 全局属性


事件属性

<map> 标签支持 HTML 中的 事件属性


相关页面

HTML DOM 参考手册:Map 对象


更多实例

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>map 和 area 的用法</h1>
  5. <p>点击电脑、电话或咖啡杯,进入新页面,阅读更多有关该主题的信息:</p>
  6. <img src="/images/workplace.jpg" alt="Workplace" usemap="#workmap" width="400" height="379">
  7. <map name="workmap">
  8. <area shape="rect" coords="34,44,270,350" alt="电脑" href="/example/html/computer.html">
  9. <area shape="rect" coords="290,172,333,250" alt="手机" href="/example/html/phone.html">
  10. <area shape="circle" coords="337,300,44" alt="咖啡" href="/example/html/coffee.html">
  11. </map>
  12. </body>
  13. </html>

map 标签默认样式

  1. map {
  2. display: inline;
  3. }