Javascript(最好是Jquery),它会模仿hashtags的行为

可能重复:
jQuery滚动到元素

基本上,我希望我的用户能够立即向下滚动到特定的定位标记,就像他们使用标签一样。 但是,我不能使用哈希标签,因此想要使用javascript(最好是jquery)向下滚动它们。

有关如何做到这一点的任何想法?


这将立即跳转到由$(selector)匹配的元素:

$(document).scrollTop($(selector).offset().top);

如果你想要一个流体动画:

$(document.body).animate({'scrollTop': $(selector).offset().top}, duration);
链接地址: http://www.djcxy.com/p/23089.html

上一篇: Javascript (preferably Jquery) that will mimic behavior of hashtags

下一篇: How to scroll to an element when a link is clicked