--- title: Element.scrollTo() slug: Web/API/Element/scrollTo tags: - API - Element - Method - Reference - scrollTo translation_of: Web/API/Element/scrollTo ---
{{ APIRef }}
{{domxref("Element")}} 的scrollTo() 方法可以使界面滚动到给定元素的指定坐标位置。

语法

element.scrollTo(x-coord, y-coord)
element.scrollTo(options)

参数

- or -

例子

element.scrollTo(0, 1000);

使用 options:

element.scrollTo({
  top: 100,
  left: 100,
  behavior: 'smooth'
});

规范

Specification Status Comment
{{ SpecName('CSSOM View', '#dom-element-scrollto-options-options', 'element.scrollTo()') }} {{ Spec2('CSSOM View') }} Initial definition.

浏览器兼容性

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

参考