HTML
HTML <a> 元素
使用锚跳转到同一个页面的不同位置。本例演示如何使用锚的 id 属性跳转到页面的不同位置( HTML5 不支持 name 属性)。
源代码:
点击运行 »
<style> .long-text { height: 1500px; background: lightblue; } </style> <h2><a id="top">这是标题,底部链接可以链接到这</a></h2> <div class="long-text"> 蜜蜂教程 - 有问题,找小蜜! </div> <a href="#top">链接到标题</a>
运行结果:
点击运行 »