最新的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>標籤