aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/window/scroll/index.html
blob: dd889bbe6061a2599399c35aab72bfb2831555ac (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
title: Window.scroll()
slug: Web/API/Window/scroll
tags:
  - 全局方法
translation_of: Web/API/Window/scroll
---
<div>{{APIRef}}</div>

<h2 id="Summary" name="Summary">概述</h2>

<p>滚动窗口至文档中的特定位置。</p>

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

<pre class="syntaxbox">window.scroll(<em>x-coord</em>, <em>y-coord</em>)
window.scroll(<em>options</em>)
</pre>

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

<ul>
 <li><code>x-coord</code> 值表示你想要置于左上角的像素点的横坐标。</li>
 <li><code>y-coord</code> 值表示你想要置于左上角的像素点的纵坐标。</li>
</ul>

<p>- 或者 -</p>

<ul>
 <li><code>options</code> 值是一个 {{domxref("ScrollToOptions")}} 字典</li>
</ul>

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

<pre class="brush:html;htmlScript:true;">&lt;!-- 把纵轴上第 100 个像素置于窗口顶部 --&gt;

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

<p>使用 <code>options</code>:</p>

<pre class="brush: js">window.scroll({
  top: 100,
  left: 100,
  behavior: 'smooth'
});
</pre>

<h2 id="Notes" name="Notes">备注</h2>

<p><a href="/zh-CN/docs/Web/API/Window/scrollTo">window.scrollTo</a> 实际上和该方法是相同的。想要重复地滚动某个距离,请使用 <a href="/zh-CN/docs/Web/API/Window/scrollBy">window.scrollBy</a>. 参见 <a href="/zh-CN/docs/Web/API/Window/scrollByLines">window.scrollByLines</a>, <a href="/zh-CN/docs/Web/API/Window/scrollByPages">window.scrollByPages</a>.</p>

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

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">说明</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('CSSOM View', '#dom-window-scrollto', 'window.scrollTo()') }}</td>
   <td>{{ Spec2('CSSOM View') }}</td>
   <td>初始定义</td>
  </tr>
 </tbody>
</table>