如何在 HTML 中指定链接文档的打开目标?
要使用 target 属性来指定在 HTML 中打开链接文档的目标。以下是 target 属性的值 -
属性 | 描述 |
---|---|
_blank | 在新标签页中打开链接页面。 |
self | 在当前标签页中打开链接页面。 |
parent | 在父框架中打开链接页面。 |
top | 在最顶层的框架中打开链接页面。 |
示例
你可以尝试运行以下代码来实现 target 属性 -
<!DOCTYPE html> <html> <head> <title>HTML target attribute</title> </head> <body> <h2>References</h2> <p>Refer the following <a href = "https://www.qries.com/questions.php" target = "_blank">website</a>.<br> The above link will open in a new tab.</p> </body> </html>
广告