HTML <area> nohref 属性
HTML <area> nohref 属性是一个 boolean 属性,用于指定一个区域没有关联链接
HTML5 中 <area> 标签不再支持 nohref 属性
nohref 属性指明 <area> 标签没有关联链接
更简单的方式是不使用 href 属性
语法
<area nohref>
浏览器支持
目前所有主流浏览器都不支持 nohref 属性
HTML 和 XHTML 之间的差异
XHTML 中,属性最小化是被禁止的, nohref 属性必须定义为
<area nohref="nohref" />
范例
带有可点击区域的图像映射,并使用 nohref 属性
<img src="/static/i/img1.jpg" 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="/static/i/html/sun2.html" alt="Mercury"> <area shape="circle" coords="124,58,8" href="/static/i/html/sun3.html" alt="Venus"> </map>