Scroll back to the top of scrollable div

后端 未结 15 1311
独厮守ぢ
独厮守ぢ 2020-12-07 14:02
#containerDiv          


        
15条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-07 14:29

    For those who still can't make this work, make sure that the overflowed element is displayed before using the jQuery function.

    Exemple:

    $('#elem').show();
    $('#elem').scrollTop(0);
    

提交回复
热议问题