连续添加文本时,垂直滚动条如何保持在底部?
我有一个 div,它有一个滚动条,这是我使用的代码:
<div style="width: 200px; height: 250px; overflow: scroll; overflow-x: hidden; -ms-overflow-x: hidden;" id="container"></div>
将会有更多文本添加到 div,但是当 div 展开时,我怎样才能让垂直滚动条保留在栏的底部,这样用户可以看到附加的文本吗?
I have a div and it has a scroll bar here is the code I've used:
<div style="width: 200px; height: 250px; overflow: scroll; overflow-x: hidden; -ms-overflow-x: hidden;" id="container"></div>
There will be more text added to the div but when the div does expand how can I have the vertical scroll bar remain at the bottom of the bar so the user can see the appended text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该将
scrollTop
设置为scrollHeight
,例如: http: //jsfiddle.net/fAK2L/1/。You should set the
scrollTop
toscrollHeight
, e.g.: http://jsfiddle.net/fAK2L/1/.使用
element.scrollIntoView
作为最后添加的元素Use
element.scrollIntoView
for the last added element