如何自动在HTML中垂直滚动一行?

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

  • jQuery滚动到元素24的答案

  • $(document).ready(function()
    {
         $("html,body").animate({scrollTop: 200}, 1000);
    }
    

    没有测试,所以让我知道,如果它不会工作


    $(document).ready(function(){
        var scrolldiv = $('#content');
    
        $('html, body').animate({
            scrollTop: $(scrolldiv).offset().top
        }, 1000);
    });
    

    scrolldiv将成为包装html内容的元素;

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

    上一篇: How to scroll vertically to a line, in HTML automatically?

    下一篇: Scroll to div with class on a button click