問題描述
jquery 獲取和設置文檔偏移量(或位置?) (jquery get and set document offset (or position?))
如何讓我的實際文檔滾動,然後在某些事件之後設置它?我想知道我的頁面是如何滾動的,並且在某些事件之後回到這個位置。謝謝
參考解法
方法 1:
You can use $(window).scrollTop()
to get the current vertical scroll and set it with $(window).scrollTop(value)
as well.