我的页面顶部有一个链接到#here。如何使用#here 使页面向下滚动到锚链接?我一直在访问 Google 和 jQuery 网站,但不知道该怎么做。JS代码就是我所拥有的。
HTML:
<div class="container">
<div class="header">
<a class="link" href="#here">Here</a>
</div>
<div class="footer">
<a id="here"></a>
<p>Some text...</p>
</div>
</div>
JS:
$('.link').click(function() {
$(this).scroll()
});