强制垂直滚动条到底部

Force vertical scrollbar to bottom

本文关键字:底部 滚动条 垂直      更新时间:2023-09-26

我有一个聊天窗口,我想总是看到这个聊天的底部。我尝试了两种方法,都在这里:http://jsfiddle.net/9hMXL/518/,但都不起作用。

我做错了什么?

另外,因为SO要求我在这里放一些代码,这里是页面的html:

<div id="contt"  class="cont">
    <div class="inner">
        <p>Hi there! Nice scrollbars, aren't they?</p>
    </div>
</div>

#contt没有滚动条。window

$(window).scrollTop(400);
http://jsfiddle.net/9hMXL/519/

$(window).scrollTop(window.height)

或者如果你使用一个内部框架,用它来代替窗口。