將元素滾動到頂部最簡單的方法是使用scrollintoview。設置block為start可以滾動到頂部;設置behavior為smooth可以開啟平滑滾動。
const scrolltotop = (element) => element.scrollintoview({ behavior:"smooth",block:"start"});
const scrolltotop = (element) => element.scrollintoview({ behavior:"smooth",block:"start"});