最新的Web開發教程
 

HTML <area> nohref Attribute

<HTML <area>標籤

圖像映射,可點擊區域,以及nohref屬性:

<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.htm" alt="Mercury">
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
試一試»

定義和用法

<area> nohref屬性不是HTML5的支持。

nohref屬性是一個布爾屬性。

當存在時,它指定的區域不具有相關聯的鏈路。

提示: nohref屬性表明<area>沒有關聯的鏈接。你可以更容易地做到這一點不包括href屬性。


瀏覽器支持

屬性
nohref Not supported Not supported Not supported Not supported Not supported

HTML和XHTML之間的差異

在XHTML中,最小的屬性是被禁止的,而nohref屬性必須被定義為<area nohref="nohref" />


句法

<area nohref>

<HTML <area>標籤