HTML 链接:导航与锚点
html · beginner · 15-20 min · Step 1/5HTML 链接
<!-- 基本链接 -->
<a href="/about">关于我们</a>
<!-- 新窗口打开(安全写法) -->
<a href="https://example.com" target="_blank" rel="noopener noreferrer">
外部链接
</a>
<!-- 页内锚点 -->
<a href="#section-2">跳到第二节</a>
<h2 id="section-2">第二节</h2>
<!-- 邮件/电话 -->
<a href="mailto:hi@jr.com">发邮件</a>
<a href="tel:+61412345678">打电话</a>
外部链接必须加 rel="noopener noreferrer",防止安全漏洞。