在做网页中要用到锚点,下面就将我个人接触过的锚点的使用小结一下:
锚点通常使用在a标签中
一、在同一页面使用锚点实现跳转
<div>
<a href="#top1">跳转到id=“top1”的地方去</a>
<div id="top1">top1内容……</div>
</div>
不仅在同一页面中使用锚点实现跳转,在不同页面也可以使用锚点实现跳转:
二、使用锚点跳转到另一页面中的指定位置,就是将锚点加在请求url的最后即可:
first.html
<a href="second.html#chapt2">第一个页面001001</a>
<a href="second.html#chapt3">第一个页面001002</a>
second.html
<a id=“chapt2” name=“chapt2” >第二个页面002001</a> //第一个锚点
<input id=“chapt3” name=“chapt3” >第二个页面002002</input> //第二个锚点