Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一长串消息,这些消息会自动更新。至于现在,我有一个小按钮要求用户刷新,因为我不想在用户阅读时预先添加这些消息 - 从而扰乱他的阅读流程。
我的另一个想法是预先添加数据,但不是将整个文档向下推,我希望它向上推,因此插入新消息而不改变用户阅读位置(除了它们在最顶部) .
如何做到这一点?甚至可能吗?
http://jsfiddle.net/Pe6a8/2/
很确定这就是你想要的。我应该得到一块饼干吗?:3
我能想到的一种方法是在新的 html div 前面加上 display:none 属性。当用户向上滚动时,我们可以更改显示属性以向他显示新的 html div。