[toc]
📖a链接
超链接
🏷href属性
hyper reference(引用)表示跳转的地址
跳转某个锚点
- 使用id属性定义锚点
<h1 id="chapter">title 1</h1> - 使用超链接进行访问
<a href="#chapter">chapter</a> - 跳转到其他页面的锚链接
<a href="./index.html#chapter">chapter</a>
- 使用id属性定义锚点
回到顶部
<a href="#top">回到顶部</a><a href="#">回到顶部</a>
为什么使用id? 全局属性,元素在文档中的唯一编号
🏷targrt
- _self:在当前页面窗口中打开,默认值
- _blank:在新窗口打开
