get height for a div with overflow:auto;

前端 未结 3 1226
囚心锁ツ
囚心锁ツ 2021-02-13 06:12

i have a div with height:100px and overflow:auto the content is dynamic.

i want scroll the div in the bottom

i tried with

$(\"#chat_content\").sc         


        
3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-13 06:31

    Get the scrollHeight property from the underlying DOM element:

    $("#chat_content").scrollTop($("#chat_content").get(0).scrollHeight);
    

提交回复
热议问题