aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/window/scrollbylines/index.html
blob: d11f31562c8e94406a3f153f4da3449a55458388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: Window.scrollByLines()
slug: Web/API/Window/scrollByLines
tags:
  - API
  - DOM
  - Method
  - Non-standard
  - Window
  - 方法
  - 非标准
translation_of: Web/API/Window/scrollByLines
---
<p> </p>

<div>{{ ApiRef() }}</div>

<div>
<p id="comment_text_2">{{Non-standard_header}}</p>
</div>

<h2 id="Summary" name="Summary"><font>概要</font></h2>

<p>按给定的行数滚动文档。</p>

<h2 id="Syntax" name="Syntax">语法</h2>

<pre class="syntaxbox">window.scrollByLines(<var>lines</var>)
</pre>

<h2 id="Parameters" name="Parameters">参数</h2>

<ul>
 <li><code>lines</code> 要滚动的行数。</li>
 <li><code>lines</code> 可以是正整数,也可以是负整数。</li>
</ul>

<h2 id="Example" name="Example">例子</h2>

<pre class="brush:html">&lt;!-- 向下滚动5行。 --&gt;
&lt;button onclick="scrollByLines(5);"&gt;down 5 lines&lt;/button&gt;
</pre>

<pre class="brush:html">&lt;!-- 向上滚动5行。 --&gt;
&lt;button onclick="scrollByLines(-5);"&gt;up 5 lines&lt;/button&gt;
</pre>

<h2 id="Specification" name="Specification"><font>规范</font></h2>

<p id="comment_text_2">这不是任何规范的一部分。</p>

<h2 id="See_also" name="See_also">参考</h2>

<ul>
 <li>{{domxref("window.scrollBy")}}, {{domxref("window.scrollByPages")}}</li>
</ul>