a标签:anchor 锚点标签
在所有浏览器中,链接的默认外观是:
<body> <a href="这里写超链接">点击后,打开链接所在地址</a>
<a href="#top">点击后,回到顶部</a>
</body>
使用a标签作为网页锚点:
HTML 4.01 与 HTML5 之间的差异
属性 | 值 | 描述 |
---|---|---|
download 属性" href="https://www.w3school.com.cn/tags/att_a_download.asp" rel="external nofollow" target="_blank">download | filename | 规定被下载的超链接目标。 |
标签的 charset 属性" href="https://www.w3school.com.cn/tags/att_a_charset.asp" rel="external nofollow" target="_blank">charset | char_encoding | HTML5 中不支持。规定被链接文档的字符集。 |
标签的 coords 属性" href="https://www.w3school.com.cn/tags/att_a_coords.asp" rel="external nofollow" target="_blank">coords | coordinates | HTML5 中不支持。规定链接的坐标。 |
标签的 href 属性" href="https://www.w3school.com.cn/tags/att_a_href.asp" rel="external nofollow" target="_blank">href | URL | 规定链接指向的页面的 URL。 |
标签的 hreflang 属性" href="https://www.w3school.com.cn/tags/att_a_hreflang.asp" rel="external nofollow" target="_blank">hreflang | language_code | 规定被链接文档的语言。 |
media 属性" href="https://www.w3school.com.cn/tags/att_a_media.asp" rel="external nofollow" target="_blank">media | media_query | 规定被链接文档是为何种媒介/设备优化的。 |
referrerpolicy 属性" href="https://www.w3school.com.cn/tags/att_a_referrerpolicy.asp" rel="external nofollow" target="_blank">referrerpolicy |
|
规定当用户单击超链接时要发送哪些引荐来源信息。 |
ping 属性" href="https://www.w3school.com.cn/tags/att_a_ping.asp" rel="external nofollow" target="_blank">ping | list_of_URLs | 规定以空格分隔的 URL 列表,当点击链接时,浏览器将发送带有正文 ping 的 post 请求(在后台)。通常用于跟踪。 |
标签的 name 属性" href="https://www.w3school.com.cn/tags/att_a_name.asp" rel="external nofollow" target="_blank">name | section_name | HTML5 中不支持。规定锚的名称。 |
标签的 rel 属性" href="https://www.w3school.com.cn/tags/att_a_rel.asp" rel="external nofollow" target="_blank">rel | text | 规定当前文档与被链接文档之间的关系。 |
标签的 rev 属性" href="https://www.w3school.com.cn/tags/att_a_rev.asp" rel="external nofollow" target="_blank">rev | text | HTML5 中不支持。规定被链接文档与当前文档之间的关系。 |
标签的 shape 属性" href="https://www.w3school.com.cn/tags/att_a_shape.asp" rel="external nofollow" target="_blank">shape |
|
HTML5 中不支持。规定链接的形状。 |
标签的 target 属性" href="https://www.w3school.com.cn/tags/att_a_target.asp" rel="external nofollow" target="_blank">target |
|
规定在何处打开链接文档。 |
type 属性" href="https://www.w3school.com.cn/tags/att_a_type.asp" rel="external nofollow" target="_blank">type | MIME type | 规定被链接文档的的 MIME 类型。 |