0

我正在尝试像 facebook 一样处理消息传递。首先,滚动放置在页面底部而不是顶部(默认行为)。当您滚动到 div 顶部时,会加载新消息,但不会更改 div 内容的位置。Facebook 只会重新计算滚动位置。因此,当我在可滚动 div 的顶部加载新消息时,我需要停止滚动以自动移动页面顶部的滚动条。

我正在使用 YUI JS 库....有什么线索吗?

4

1 回答 1

0

Did you try to make a

 scroll(0,0);

when the page finished loading new message content.

You also have to make a

 Y.one("scrollzone").syncUI();

to make YUI recalculate the height of the scrollable div.

于 2012-07-22T13:30:10.197 回答