HTML <area> 標簽的 nohref 屬性
定義和用法
nohref 屬性規(guī)定該區(qū)域沒有相關的鏈接。
實例
帶有可點擊區(qū)域和 nohref 屬性的圖像映射:
<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" />
<map name="planetmap" id="planetmap">
<area shape="circle" coords="180,139,14" nohref="nohref"
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>
瀏覽器支持
所有主流瀏覽器都支持 nohref 屬性。
語法
<area nohref="value">
屬性值
值 | 描述 |
---|---|
nohref | 規(guī)定區(qū)域沒有相關的鏈接。 |