我有一个div,里面有很多内容,只有div垂直滚动。
我在div的底部有一些东西需要很容易找到。我不能把它移出div。
是否有链接我可以使用,或者一些javasript,以便在点击链接时滚动到div的底部?
答案 0 :(得分:2)
您不需要任何JavaScript。 HTML具有内置的功能。您可以使用name anchors跳转到页面的某些部分而无需重新加载文档。
<div>
<p>
Lots of content
</p>
<a href="#importantplace">click this link to get to the bottom of the div</a>
<p>
Lots of content
</p>
<p id="importantpplace">
Important content
</p>
</div>