我的HTML页面每隔几秒就会被底部的新内容动态增长。我希望用户始终能够看到页面底部。有可能用jQuery做到吗?我每100毫秒尝试一次这个片段,不能正常工作:
$("html, body").animate({scrollTop: $(document).height()}, 500);
答案 0 :(得分:1)
试试这个
setInterval(function(){
$("html, body").animate({ scrollTop: $(document).height() }, 100);
},100);