最新的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