连续添加文本时,垂直滚动条如何保持在底部?

发布于 2024-12-10 01:38:34 字数 267 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鹤舞 2024-12-17 01:38:34

您应该将 scrollTop 设置为 scrollHeight,例如: http: //jsfiddle.net/fAK2L/1/

var div = $('div');
div.scrollTop( div.get(0).scrollHeight );

You should set the scrollTop to scrollHeight, e.g.: http://jsfiddle.net/fAK2L/1/.

var div = $('div');
div.scrollTop( div.get(0).scrollHeight );
天生の放荡 2024-12-17 01:38:34

使用 element.scrollIntoView 作为最后添加的元素

Use element.scrollIntoView for the last added element

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文