正文
定義和用法
<area> 標籤定義
圖像映射中的區域(註:圖像映射指得是帶有可點擊區域的圖像)。
area 元素總是嵌套在 <map> 標籤中。
注釋:<img> 標籤中的 use
map 屬性與
map 元素 name 屬性相關聯,創建圖像與映射之間的聯繫。
實例
<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" /><map name="planetmap" id="planetmap"> <area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus" /><area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" /><area shape="rect" coords="0,0,110,260" href ="sun.html" alt="Sun" /></map> 瀏覽器支持
差異
在 HTML 中,<area> 沒有結束標籤。
在 XHTML 中,<area> 必須正確地關閉。
提示和注釋
注釋:<img> 中的
usemap 屬性可引用 <map> 中的
id 或
name 屬性(由
瀏覽器決定),所以我們需要同時向 <map> 添加 id 和 name 兩個屬性。
必需的屬性
DTD 指示此屬性允許在哪種 DTD 中使用。S=Strict, T=Transitional, F=Frameset.
屬性 | 值 | 描述 | DTD |
---|
| text | 定義此區域的替換文本。 | STF |
可選的屬性
屬性 | 值 | 描述 | DTD |
---|
coords | 坐標值 | 定義可點擊區域(對滑鼠敏感的區域)的坐標。 | STF |
| URL | 定義此區域的目標 URL。 | STF |
nohref | nohref | 從圖像映射排除某個區域。 | STF |
| default rect circ poly | 定義區域的形狀。 | STF |
| _blank _parent _self _top | 規定在何處打開 href 屬性指定的目標 URL。 | TF |
標準屬性
id, class, title, style, dir, lang, xml:lang, tabindex, accesskey 事件屬性
onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, onfocus, onblur