HTML5不支持 <area> nohref屬性,nohref屬性是一個(gè)布爾屬性。存在時(shí),它指定區(qū)域沒有關(guān)聯(lián)的鏈接。
具有可點(diǎn)擊區(qū)域和nohref屬性的圖像地圖:
<!DOCTYPE html> <html> <title>HTML:<area> nohref 屬性 - 菜鳥教程 (cainiaoplus.com)</title> <body> <p>單擊太陽或其中一個(gè)行星以近距離觀察它:</p> <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" nohref alt="Sun"> <area shape="circle" coords="90,58,3" href="mercur.html" alt="Mercury"> <area shape="circle" coords="124,58,8" href="venus.html" alt="Venus"> </map> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
目前所有主流瀏覽器都不支持 nohref 屬性。
HTML5不支持<area> nohref屬性。
nohref屬性是一個(gè)布爾屬性。
存在時(shí),它指定區(qū)域沒有關(guān)聯(lián)的鏈接。
提示: nohref 屬性指明 <area> 標(biāo)簽沒有關(guān)聯(lián)鏈接。更簡單的方式是不使用 href 屬性。
在 XHTML 中,屬性最小化是被禁止的, nohref 屬性必須定義為<area nohref="nohref" />。
<area nohref>