如何 - 滚动到视图
了解如何使用 JavaScript 滚动到视图。
scrollIntoView() 方法
The scrollIntoView()
method scrolls an element into the visible area of the browser window.
示例
Scroll the element with id="content" into the visible area of the browser window
const element = document.getElementById("content");
element.scrollIntoView();
自己尝试一下 »
在我们的 JavaScript 参考中了解更多关于 scrollIntoView() 方法。