最新的Web开发教程
 

HTML <map> name Attribute

<HTML <map>标签

图像映射,可点击方面:

<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
试一试»

定义和用法

必需的name属性指定图像映射的名称。

name属性是与相关联的<img>'s usemap属性并创建图像和地图之间的关系。


浏览器支持

属性
name

HTML 4.01和HTML5之间的差异

没有。


句法

<map name="mapname">

属性值

描述
mapname 图像映射的名称

<HTML <map>标签