HTML 5 <map> 标签

定义和用法

<map> 标签定义客户端的图像映射。图像映射是带有可点击区域的图像。

HTML 4.01 与 HTML 5 之间的差异

在 HTML 5 中,不再支持 name 属性。

提示和注释:

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

属性

属性 描述 4 5
id unique_name 为 map 标签定义唯一的名称。 4 5
name unique_name 为 map 标签定义唯一的名称。不支持。 4  

标准属性

class, contenteditable, contextmenu, dir, draggable, id, irrelevant, 
lang, ref, registrationmark, tabindex, template, title

如需完整的描述,请访问 HTML 5 中标准属性

事件属性

onabort, onbeforeunload, onblur, onchange, onclick, oncontextmenu, 
ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover, 
ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, 
onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, 
onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload

如需完整的描述,请访问 HTML 5 中事件属性

TIY 实例

创建图像地图
本例显示如何创建带有可点击区域的图像地图。其中的每个区域都是一个超级链接。