作用:从一个页面跳转到同页面的指定位置或另一个页面的指定位置
方法:anchor link
转载于:https://www.rapidtables.com/web/html/link/html-anchor-link.html#exampl
HTML anchor link code. How to link in the same page in HTML.
Link to anchor on same page
code:
<a href="#example">Example headline</a>
The code will create this link:
When pressing the above link the browser will jump to the heading below, with this code:
code:
<h5><a id="example"></a>Example headline</h5>
Example headline
Some text...
Link to anchor on another page
code:
<a href="../html-link.html#generator">HTML link code generator</a>
The code will create this link:
When pressing the link the browser will jump to the html-link page section that has this code:
<h2><a id="generator"></a>HTML link code generator</h2>