--- title: Element.scrollIntoView() slug: Web/API/Element/scrollIntoView translation_of: Web/API/Element/scrollIntoView ---
{{APIRef("DOM")}}
{{domxref("Element")}} 接口的scrollIntoView()方法会滚动元素的父容器,使被调用scrollIntoView()的元素对用户可见。

语法

element.scrollIntoView(); // 等同于element.scrollIntoView(true)
element.scrollIntoView(alignToTop); // Boolean型参数
element.scrollIntoView(scrollIntoViewOptions); // Object型参数

参数

alignToTop{{optional_inline}}
一个{{jsxref("Boolean")}}值:
scrollIntoViewOptions {{optional_inline}} {{experimental_inline}}
一个包含下列属性的对象:
behavior {{optional_inline}}
定义动画过渡效果, "auto"或 "smooth" 之一。默认为 "auto"
block {{optional_inline}}
定义垂直方向的对齐, "start""center""end", 或 "nearest"之一。默认为 "start"
inline {{optional_inline}}
定义水平方向的对齐, "start""center""end", 或 "nearest"之一。默认为 "nearest"

示例

var element = document.getElementById("box");

element.scrollIntoView();
element.scrollIntoView(false);
element.scrollIntoView({block: "end"});
element.scrollIntoView({behavior: "smooth", block: "end", inline: "nearest"});

注意

取决于其它元素的布局情况,此元素可能不会完全滚动到顶端或底端。

规范

Specification Status Comment
{{SpecName("CSSOM View", "#dom-element-scrollintoview", "Element.scrollIntoView()")}} {{Spec2("CSSOM View")}} Initial definition

浏览器兼容性

{{Compat("api.Element.scrollIntoView")}}

相关内容