元素:scroll() 方法
scroll()
是 Element
接口的方法,用于将元素滚动到给定元素内部的特定坐标集。
语法
js
scroll(x-coord, y-coord)
scroll(options)
参数
返回值
无 (undefined
).
示例
js
// Put the 1000th vertical pixel at the top of the element
element.scroll(0, 1000);
使用 options
js
element.scroll({
top: 100,
left: 100,
behavior: "smooth",
});
规范
规范 |
---|
CSSOM 视图模块 # dom-element-scroll |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。