- 锚点是网页制作中超级链接的一种,又叫命名锚记。命名锚记像一个迅速定位器一样是一种页面内的超级链接
//需要锚点的元素
<div id="locationHerE">锚点</div>
//引入jq
<script type="text/javascript" src="/jquery/jquery.js"></script>
//js代码
$("html, body").animate({scrollTop: $("#locationHerE").offset().top}, {duration:500,easing: "swing"});