blob: 7efa46bee5a21ec1ee86e8165a63c2d0546864e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
---
title: Hyperlink(超链接)
slug: Glossary/Hyperlink
tags:
- 导航
- 术语
- 编程
translation_of: Glossary/Hyperlink
---
<p>超链接将网页或其他数据连接起来。在 HTML 中,{{HTMLElement("a")}} 标签定义了网页中的某处(例如一段文本或一张图片)到其他网页(也可能是本网页)的另一处的超链接。</p>
<h2 id="深入了解">深入了解</h2>
<h3 id="基础知识">基础知识</h3>
<ul>
<li>{{interwiki("wikipedia", "Hyperlink", "Hyperlink")}} on Wikipedia</li>
<li>The <a href="/en-US/docs/Web/Guide/HTML/Hyperlink">Hyperlink</a> guide on MDN</li>
</ul>
<h3 id="技术资讯">技术资讯</h3>
<ul>
<li><a class="external external-icon" href="https://www.w3.org/TR/1999/REC-html401-19991224/struct/links.html">Links in HTML Documents - W3C</a></li>
<li><a class="external external-icon" href="https://w3c.github.io/html-reference/a.html">HTML5 a - hyperlink - W3C</a></li>
</ul>
<h3 id="学习更多">学习更多</h3>
<ul>
<li><a href="/en-US/docs/Web/HTML/Element/a">MDN上的 <code><a></code></a></li>
<li><a href="/en-US/docs/Web/HTML/Element/link">MDN上的 <code><link></code> </a></li>
</ul>
|