HTML target 属性
定义和用法
对于 a 元素和 area 元素,target 属性指定打开链接文档的位置。
对于基本元素,target 属性指定页面中所有超链接和表单的默认目标。
对于表单元素,target 属性指定一个名称或关键字,指示在哪里显示提交表单后收到的响应。
适用于
target 属性可用于以下元素:
元素 | 属性 |
---|---|
<a> | src |
<area> | src |
<base> | src |
<form> | src |
实例
Area 实例
一张图片映射,带有可点击区域和一个目标属性:
<img src="planets.gif"
width="145" height="126"
alt="行星"
usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="太阳"
target="_blank">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="水星">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="金星">
</map>
亲自试一试 »
usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="太阳"
target="_blank">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="水星">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="金星">
</map>
Form 实例
在新窗口或标签中显示收到的响应:
<form action="/action_page.php"
method="get" target="_blank">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="提交">
</form>
亲自试一试 »
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="提交">
</form>
浏览器支持
target
属性对每个元素都有以下浏览器支持:
元素 | |||||
---|---|---|---|---|---|
a | Yes | Yes | Yes | Yes | Yes |
area | Yes | Yes | Yes | Yes | Yes |
base | Yes | Yes | Yes | Yes | Yes |
form | Yes | Yes | Yes | Yes | Yes |