最新的Web開發教程
 

HTML <area> href Attribute

<HTML <area>標籤

圖像映射,可點擊方面:

<img src="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" 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>
試一試»

定義和用法

href屬性指定的區域超鏈接的目標。

如果href屬性不存在,則<area>標籤是不是超鏈接。


瀏覽器支持

屬性
href Yes Yes Yes Yes Yes

HTML 4.01和HTML5之間的差異

在HTML5中,如果<area>標籤沒有href屬性,它是一個超鏈接的佔位符。


句法

<area href="URL">

屬性值

描述
URL 指定區域中的超鏈接的目標。

可能的值:

  • 絕對URL -指向另一個網站(如href="http://www.example.com/sun.htm"
  • 相對URL -指向一個網站中的文件(如href="sun.htm"
  • 鏈接到一個元素與指定標識的頁面中(如href="#top"
  • 其他協議(如https://, ftp://, mailto:, file:等。)
  • 腳本(如href="javascript:alert('Hello');"

<HTML <area>標籤