html <a> tag stand for?

时间:2016-09-11 09:24:48

标签: html hyperlink tags

As most of you know, the <a> tag is (mostly) used in html to make a hyperlink like

<a href="page.html">Click me</a>

But I've always wondered what the "a" in the <a> tag actually stands for.

4 个答案:

答案 0 :(得分:16)

a代表 anchor 。就这么简单!

答案 1 :(得分:6)

根据HTML Documentation part 4.5.1<a>标记引用HTML 锚点元素

答案 2 :(得分:2)

代表锚标记。 标签定义了一个超链接,用于从一个页面链接到另一个页面。

元素最重要的属性是href属性,它指示链接的目的地。

答案 3 :(得分:0)

从技术上讲,<a>标签根据the spec具有多种含义:

  

如果<a>元素具有href属性,则它表示一个   用其内容标记的超链接(超文本 anchor )。

     

如果<a>元素没有href属性,则该元素   代表占位符,否则链接可能具有该位置   如果相关的话,则仅由元素的   内容。