//平滑滚动到顶部
const scrollToTop = () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
})
}
js 平滑滚动到顶部
最新推荐文章于 2025-05-26 23:59:04 发布
//平滑滚动到顶部
const scrollToTop = () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
})
}