Window scrollTo() 方法
页面下方有更多实例。
定义和用法
scrollTo() 方法将文档滚动到指定的坐标。
提示: 使用 scrollBy() 方法将指定的距离滚动多次。
浏览器支持
方法 | |||||
---|---|---|---|---|---|
scrollTo() | Yes | Yes | Yes | Yes | Yes |
语法
window.scrollTo(xpos, ypos)
参数值
参数 | 类型 | 描述 |
---|---|---|
xpos | Number | 必需。要沿x轴(水平)滚动到的坐标,以像素为单位 |
ypos | Number | 必需。要沿y轴(垂直)滚动到的坐标,以像素为单位 |
技术细节
返回值: | 无返回值 |
---|
更多实例
相关页面
Window 对象: scrollBy() 方法
❮ Window 对象