//平滑滚动到顶部
const scrollToTop = () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
})
}
js 平滑滚动到顶部
最新推荐文章于 2024-10-31 16:02:32 发布
//平滑滚动到顶部
const scrollToTop = () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
})
}