共计 955 个字符,预计需要花费 3 分钟才能阅读完成。
a 标签的 target 属性用于指定链接文档在何处显示。以下是 target 属性的常见取值和对应的作用:
1. _self: 默认值。链接文档会在当前窗口或者框架中打开。
2. _blank: 链接文档会在新窗口或者新标签页中打开。
3. _parent: 链接文档会在父级框架中打开,如果没有父级框架,则与 _self 效果相同。
4. _top: 链接文档会在顶级窗口中打开,忽略所有框架。
5. 自定义窗口名称 :可以为 target 属性设置一个自定义的窗口名称,比如 target=”_mywindow”。如果存在具有相同窗口名称的窗口,链接文档将在该窗口中打开;如果不存在,则会打开一个新窗口,并给予指定的窗口名称。
通过使用不同的 target 值,可以控制链接的打开方式,例如在新窗口中打开链接、在指定的窗口内打开链接,或者在框架中打开链接。这样可以根据需要在不同的上下文中展现链接内容,提供更好的用户体验。需要注意的是,为了遵循良好的用户体验原则,应当谨慎使用新窗口打开链接,以避免用户感到困扰或担心安全问题。
Target Attribute Example
Target Attribute Example
This is a link that opens in the same window:
Open in Same Window
This is a link that opens in a new window or tab:
Open in New Window
This is a link that opens in the parent frame (if available):
Open in Parent Frame
This is a link that opens in the top-level window (ignores frames):
Open in Top Window
This is a link that opens in a specific named window or tab:
Open in Custom Window
以上代码演示了不同 target
属性取值的作用。根据点击链接时的需求,可以选择适当的 target
值,控制链接如何打开和显示。请注意,这只是一个示例,实际使用时需要替换链接地址和自定义窗口名称以符合实际情况。
原文地址: HTML 中 a 标签的 target 属性的取值和作用 – 详解 (附加代码)