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.scrollByPages

概述

在当前文档页面按照指定的页数翻页.

语法

window.scrollByPages(pages) 

参数

  • pages 翻页数,正数像下翻,负数向上翻.

例子

// 当前文档向下翻一页 
window.scrollByPages(1);

// 当前文档向上翻一页 
window.scrollByPages(-1);

备注

查看 window.scrollBy, window.scrollByLines, window.scroll, window.scrollTo.

规范

DOM Level 0 不属于任何标准

文档标签和贡献者

 此页面的贡献者: teoli, Hasilt, ziyunfei
 最后编辑者: Hasilt,