blob: 96de4d768a64413809ea1e1019e12c970348ef47 (
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: Range.getClientRects()
slug: Web/API/Range/getClientRects
tags:
- API
- CSSOM
- 参考
- 实验性
- 方法
- 范围
translation_of: Web/API/Range/getClientRects
---
<div>{{ApiRef("DOM")}}</div>
<p><strong><code>Range.getClientRects()</code></strong><strong> </strong>方法返回一个 {{ domxref("DOMRect") }} 对象列表,表示 <a href="/en/DOM/range" title="https://developer.mozilla.org/en/dom:range">range</a> 在屏幕上所占的区域。这个列表相当于汇集了范围中所有元素调用 {{ domxref("Element.getClientRects()") }} 方法所得的结果。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox notranslate"><em>rectList</em> = <em>range</em>.getClientRects()
</pre>
<h2 id="示例">示例</h2>
<pre class="brush: js notranslate">range = document.createRange();
range.selectNode(document.getElementsByTagName("div").item(0));
rectList = range.getClientRects();
</pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">注释</th>
</tr>
<tr>
<td>{{SpecName('CSSOM View', '#dom-range-getclientrects', 'Range.getClientRects()')}}</td>
<td>{{Spec2('CSSOM View')}}</td>
<td>Initial specification.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.Range.getClientRects")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li>{{domxref("Range")}}</li>
</ul>
|