How to scroll an item inside a scrollable div to the top

前端 未结 5 951
旧巷少年郎
旧巷少年郎 2020-12-09 10:03

I have a #contact-list-scroller div that scrolls in the page. Based on a contact_XXXX ID I\'d like the #contact-list-scroller scroll position to bet set to make sure the con

5条回答
  •  眼角桃花
    2020-12-09 10:18

    After trying all of the above with no success I found this at W3schools:

    var elmnt = document.getElementById("Top");
    elmnt.scrollIntoView();

提交回复
热议问题