HTML-Entwicklungshandbuch
/ <area>
<area>
HTML <area> 標(biāo)簽 實(shí)例 帶有可點(diǎn)擊區(qū)域的圖像映射: <img src='planets.gif' width='145' height='126' alt='Planets' usemap='#planetmap'> ..
HTML <area> 標(biāo)簽
實(shí)例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> </head> <body> <p>點(diǎn)擊太陽或其他行星,注意變化:</p> <img src="https://img.php.cn/upload/article/000/000/001/5e572220870aa252.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm"> <area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm"> <area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm"> </map> </body> </html>
運(yùn)行實(shí)例 ?
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例
瀏覽器支持
所有主流瀏覽器都支持 <area> 標(biāo)簽。
標(biāo)簽定義及使用說明
<area> 標(biāo)簽定義圖像映射內(nèi)部的區(qū)域(圖像映射指的是帶有可點(diǎn)擊區(qū)域的圖像)。
<area> 元素始終嵌套在 <map> 標(biāo)簽內(nèi)部。
注釋: <img> 標(biāo)簽中的 usemap 屬性與 <map> 元素中的 name 相關(guān)聯(lián),以創(chuàng)建圖像與映射之間的關(guān)系。
HTML 4.01 與 HTML5之間的差異
HTML5 提供了一些新屬性,同時(shí)不再支持 HTML 4.01 中的某些屬性。
HTML 與 XHTML 之間的差異
在 HTML 中,<area> 標(biāo)簽沒有結(jié)束標(biāo)簽。
在 XHTML 中,<area> 標(biāo)簽必須正確地關(guān)閉。
屬性
New :HTML5 中的新屬性。
屬性 | 值 | 描述 |
---|---|---|
alt | text | 規(guī)定區(qū)域的替代文本。如果使用 href 屬性,則該屬性是必需的。 |
coords | coordinates | 規(guī)定區(qū)域的坐標(biāo)。 |
href | URL | 規(guī)定區(qū)域的目標(biāo) URL。 |
hreflangNew | language_code | 規(guī)定目標(biāo) URL 的語言。 |
mediaNew | media query | 規(guī)定目標(biāo) URL 是為何種媒介/設(shè)備優(yōu)化的。默認(rèn):all。 |
nohref | value | HTML5 不支持。 規(guī)定沒有相關(guān)鏈接的區(qū)域。 |
relNew | alternate author bookmark help license next nofollow noreferrer prefetch prev search tag | 規(guī)定當(dāng)前文檔與目標(biāo) URL 之間的關(guān)系。 |
shape | default rect circle poly | 規(guī)定區(qū)域的形狀。 |
target | _blank _parent _self _top framename | 規(guī)定在何處打開目標(biāo) URL。 |
typeNew | MIME_type | 規(guī)定目標(biāo) URL 的 MIME 類型。 注:MIME = Multipurpose Internet Mail Extensions。 |
全局屬性
<area> 標(biāo)簽支持 HTML 的全局屬性。
事件屬性
<area> 標(biāo)簽支持 HTML 的事件屬性。
相關(guān)文章
HTML DOM 參考手冊(cè): Area 對(duì)象