Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML target 属性


定义和用法

对于 <a><area> 元素, target 属性指定在何处打开链接的文档。

对于 <base> 元素, target 属性指定页面中所有超链接和表单的默认目标。

对于 <form> 元素, target 属性指定一个名称或关键字,用于指示在何处显示提交表单后收到的响应。


适用范围

以下元素可以使用 target 属性。

元素 属性
<a> target
<area> target
<base> target
<form> target

示例

A 示例

target 属性指定在何处打开链接的文档

<a href="https://w3schools.org.cn" target="_blank">访问 W3Schools</a>
自己尝试 »

区域示例

一个图像地图,带有可点击区域,并带有 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 action="/action_page.php" method="get" target="_blank">
  姓氏: <input type="text" name="fname"><br>
  名字: <input type="text" name="lname"><br>
  <input type="submit" value="提交">
</form>
自己尝试 »

浏览器支持

对于每个元素,target 属性具有以下浏览器支持

元素
a
area
base
form

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.