Window: scrollByLines() 方法

非标准:此功能是非标准的,并且不在标准轨道上。请勿在面向 Web 的生产网站上使用它:它不会对每个用户都起作用。实现之间也可能存在很大的不兼容性,并且行为将来可能会发生变化。

Window.scrollByLines() 方法根据指定的行数滚动文档。

语法

js
scrollByLines(lines)

参数

  • lines 是要滚动文档的行数。它可以是正整数或负整数。

返回值

无 (undefined).

示例

html
<!-- Scroll up the document by 5 lines -->
<button id="scroll-up" onclick="scrollByLines(-5);">Up 5 lines</button>

<!-- Scroll down the document by 5 lines -->
<button id="scroll-down" onclick="scrollByLines(5);">Down 5 lines</button>

规范

这不是任何规范的一部分。

浏览器兼容性

BCD 表格仅在启用了 JavaScript 的浏览器中加载。

另请参阅