如何在单击链接时滚动到元素

这个问题在这里已经有了答案:

  • jQuery滚动到元素24的答案

  • $("li a").click(function(){
        $('html, body').animate({
            scrollTop: $( $.attr(this, 'href') ).offset().top
        }, 1000);
        return false;
    }); 
    

    这将适用于李元素中的所有链接。


    $(document).scrollTop($('div#content').offset().top)
    

    这是我喜欢使用的脚本,只要我想启用“滚动到”类型的Jquery效果即可。

    http://cferdinandi.github.io/smooth-scroll/

    链接地址: http://www.djcxy.com/p/23087.html

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

    下一篇: scroll to specific element on page using jquery