id 为 link 的锚点的技术术语是什么?
What is the technical term for an anchor with a link to an id?
在德语中,我们使用术语 "Sprungmarke",字面意思是 "jump mark"。什么是合适的英语术语?
<a href="#my-headline">Jump to My Headline</a>
.
.
.
.
.
.
.
<h1 id="my-headline">My Headline</h1>
它被称为"Fragment identifier":
- http://w3c.github.io/html/browsers.html#navigating-to-a-fragment-identifier
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Identifying_resources_on_the_Web#Fragment
- https://en.wikipedia.org/wiki/Fragment_identifier
您可以在 href
中使用 id 目标跳转到同一页面或任何其他页面上具有此 id 的特定部分。
您还可以在 SVG 文件中引用符号。
此技术适用于 XML 个文件。
在德语中,我们使用术语 "Sprungmarke",字面意思是 "jump mark"。什么是合适的英语术语?
<a href="#my-headline">Jump to My Headline</a>
.
.
.
.
.
.
.
<h1 id="my-headline">My Headline</h1>
它被称为"Fragment identifier":
- http://w3c.github.io/html/browsers.html#navigating-to-a-fragment-identifier
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Identifying_resources_on_the_Web#Fragment
- https://en.wikipedia.org/wiki/Fragment_identifier
您可以在 href
中使用 id 目标跳转到同一页面或任何其他页面上具有此 id 的特定部分。
您还可以在 SVG 文件中引用符号。
此技术适用于 XML 个文件。