最新的Web開發教程
 

HTML target Attribute


定義和用法

對於一個元素,和area元素的target屬性指定在哪裡打開鏈接的文檔。

對於基本元素的target屬性指定頁面中所有超鏈接和形式的默認目標。

對於表單元素的target屬性指定一個名稱或指示在何處顯示被提交表單後收到的響應關鍵字。


適用於

target屬性,可以在以下元素一起使用:

分子 屬性
<a> src
<area> src
<base> src
<form> src

例子

A實例

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

<a href="http://www.w3ii.com" target="_blank">Visit w3ii</a>
試一試»

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>
試一試»

基本示例

指定頁面上的所有超鏈接和形式的默認目標:

<head>
<base target="_blank">
</head>
試一試»

Form示例

顯示在新窗口或標籤接收到的響應:

<form action="demo_form.asp" method="get" target="_blank">
  First name: <input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>
  <input type="submit" value="Submit">
</form>
試一試»

瀏覽器支持

target屬性為每個元素以下瀏覽器支持:

元件
a
area
base
form