将元素滚动到视野范围
元素对象
'start' | 'end' | 'center' | 'nearest'
scrollIntoView(document.querySelector('.test')); /// test 元素滚动到视野范围scrollIntoView(document.querySelector('.test'), 'start'); /// test 元素滚动到视野范围顶部 Copy
scrollIntoView(document.querySelector('.test')); /// test 元素滚动到视野范围scrollIntoView(document.querySelector('.test'), 'start'); /// test 元素滚动到视野范围顶部
将元素滚动到视野范围