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刪除。