html <map> 標簽用于客戶端圖像映射,圖像映射指帶有可點擊區域的一幅圖像 <img> 中的 usemap 屬性可引用 <map> 中的 id 或 name 屬性(取決于瀏覽器),所以我們應同時向 <map> 添加 id 和 name 屬性 <area> 元素永遠嵌套在 map 元素內部,area 元素可定義圖像映射中的區域 屬性
范例帶有可點擊區域的圖像映射 <img src="/static/i/img1.jpg" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,82,126" alt="Sun" href="/static/i/html/sun.html"> <area shape="circle" coords="90,58,3" alt="Mercury" href="/static/i/html/sun2.html"> <area shape="circle" coords="124,8" alt="Venus" href="/static/i/html/sun2.html"> </map> HTML 4.01 與 HTML5之間的差異HTML5 中,如果 id 屬性在<map> 標簽中指定,則必須同樣指定 name 屬性 HTML 與 XHTML 之間的差異XHTML 中,name 屬性已經廢棄,使用 id 屬性替換它 |