Cross-Browser method for setting ScrollTop of an element?

后端 未结 3 1215
半阙折子戏
半阙折子戏 2020-12-31 04:31

For example I have I a div tag with the scroll bar on the right of the div tag.
I want to show the div with the last line, so I have this:

document.get         


        
3条回答
  •  一整个雨季
    2020-12-31 05:17

    Try setting the scroll position to a real figure, instead of just an arbitrary big number:

    document.getElementById("divscroll").scrollTop = document.getElementById("divscroll").scrollHeight; 
    

提交回复
热议问题