作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我很难在 Internet 上找到与 target="_help"
相关的信息。所以,当我有一个像这样的 HTMLAnchorElement
时:
<a href="http://www.google.com" target="_help"></a>
我可以看到这个东西实际上表现得像 target="_blank"
,但还有其他吗?
在 MDN 上找不到任何内容.也没有提到 HTML5 Spec和详细W3C Browsing Context页面。
最佳答案
This attribute specifies where to display the linked resource. In HTML4, this is the name of, or a keyword for, a frame. In HTML5, it is a name of, or keyword for, a browsing context (for example, tab, window, or inline frame).
这意味着点击一个
<a href="http://www.google.com" target="_help"></a>
指示名为 _help
的 iframe
将 src
值设置为 href
的值。下面的例子加载了 youtube 视频:
<a href="http://www.youtube.com/embed/M7lc1UVf-VE" target="_help">Help</a>
<iframe name="_help"></iframe>
JSBin .
附带说明一下,这个功能看起来很晦涩,在你提问之前我不知道它。
关于html - 目标 "_help"做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35196416/
我很难在 Internet 上找到与 target="_help" 相关的信息。所以,当我有一个像这样的 HTMLAnchorElement 时: 我可以看到这个东西实际上表现得像 target="
我是一名优秀的程序员,十分优秀!