如何自动滚动?

时间:2014-05-20 10:33:33

标签: jquery html html5

我有div,其风格为overflow-y

但是当我打开页面时,我需要div已经向下滚动

我在一个页面中有大约100个div,所以如果解决方案简单并优化就会很好。

非常感谢你的时间!

enter image description here

3 个答案:

答案 0 :(得分:0)

使用Javascript:

var divobj = document.getElementById("div_id");
divobj.scrollTop = divobj.scrollHeight;

使用Jquery:

$("#div_id").scrollTop($("#div_id")[0].scrollHeight);

答案 1 :(得分:0)

 var div = document.getElementById('yourDiv');
 div.scrollTop = div.scrollHeight;

答案 2 :(得分:0)

Tr this。

$(document).ready(function () {
    // Handler for .ready() called.
    $('html, body').animate({
        scrollTop: $('#what').offset().top
    }, 'slow');
});