最新的Web開發教程
 

HTML <area> target Attribute

<HTML <area>標籤

圖像映射,可點擊區域,一個target屬性:

<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"
target="_blank">
  <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>
試一試»

定義和用法

target屬性指定在哪裡打開鏈接的文檔。

僅當使用href屬性存在。


瀏覽器支持

屬性
target Yes Yes Yes Yes Yes

HTML 4.01和HTML5之間的差異

框架和框架不再支持。 該_parent_topframename屬性值大多是iframe使用。


句法

<area target="_blank|_self|_parent|_top|framename">

屬性值

描述
_blank 打開鏈接的文檔在新窗口或標籤
_self 打開在同一幀中的鏈接的文檔,因為它被點擊
_parent 打開鏈接的文檔中的父框架
_top 打開鏈接的文檔中的窗口的全部體
framename 打開鏈接的文檔在一個名為框架

<HTML <area>標籤