欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HTML之给网页增加锚点 博客分类: 元素 htmlanchor网页锚点 

程序员文章站 2024-03-25 18:43:10
...
HTML Anchors with 'name' or 'id'?
When one wants to refer to some part of a webpage with the 

"http://example.com/#foo" 

method, should one use

<h1><a name="foo"/>Foo Title</h1>

or

<h1 id="foo">Foo Title</h1>

They both work, but are they equal, or do they have semantic differences?




-----------------------------------------------------------------------------


According to the HTML 5 specification, 5.9.8 Navigating to a fragment identifier:

引用

For HTML documents (and the text/html MIME type), the following processing model must be followed to determine what the indicated part of the document is.

1. Parse the URL, and let fragid be the <fragment> component of the URL.

2. If fragid is the empty string, then the indicated part of the document is the top of the document.

3. If there is an element in the DOM that has an ID exactly equal to fragid, then the first such element in tree order is the indicated part of the document; stop the algorithm here.

4. If there is an a element in the DOM that has a name attribute whose value is exactly equal to fragid, then the first such element in tree order is the indicated part of the document; stop the algorithm here.

5. Otherwise, there is no indicated part of the document.


So, it will look for id="foo", and then will follow to name="foo"


Edit: As pointed out by @hsivonen,
in HTML5 the a element has no name attribute. However, the above rules still apply to other named elements.

-----------------------------------------------------------------------------






html-anchors-with-name-or-id

http://*.com/questions/484719



-