1、设置css
overflow-y: auto;
在div的y轴上会出现滚动条。
var showContent = $(".show-chat-content");
showContent[0].scrollTop = showContent[0].scrollHeight;
在js中这样写,会保持滚动条一直在最下面。
overflow-y: auto;
var showContent = $(".show-chat-content");
showContent[0].scrollTop = showContent[0].scrollHeight;
在js中这样写,会保持滚动条一直在最下面。
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。