Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Window.scroll()

这篇翻译不完整。请帮忙从英语翻译这篇文章

概述

滚动窗口至文档中的特定位置。

语法

window.scroll(x-coord, y-coord) 

参数

  • x-coord 值表示你想要置于左上角的像素点的横坐标。
  • y-coord 值表示你想要置于左上角的像素点的纵坐标。

示例

<!-- 把纵轴上第100个像素置于窗口顶部 -->

<button onClick="scroll(0, 100);">点击以向下滚动100像素</button>

备注

window.scrollTo 同样能高效地完成同样的任务。想要重复地滚动某个距离,请使用 window.scrollBy. 参见 window.scrollByLines, window.scrollByPages.

规范

Specification Status Comment
CSS Object Model (CSSOM) View Module
window.scrollTo()
Working Draft Initial definition.

文档标签和贡献者

 此页面的贡献者: Chimen
 最后编辑者: Chimen,