平滑滚动到页面元素scrollIntoView
// 获取目标元素 const tableSection = document.querySelector('.data-table-section') // 平滑滚动到目标元素 tableSection.scrollIntoView({ behavior: 'smooth', block: 'start' })
青云直上三千码
// 获取目标元素 const tableSection = document.querySelector('.data-table-section') // 平滑滚动到目标元素 tableSection.scrollIntoView({ behavior: 'smooth', block: 'start' })