blob: b9cb7499ef973816ae49bc5f33a88b04dab940e9 (
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
|
---
title: Element.clientHeight
slug: Web/API/Element/clientHeight
tags:
- Property
translation_of: Web/API/Element/clientHeight
---
<p>{{ APIRef() }}</p>
<p>这个属性是只读属性,对于没有定义CSS或者内联布局盒子的元素为0,否则,它是元素内部的高度(单位像素),包含内边距,但不包括水平滚动条、边框和外边距。</p>
<p><code>clientHeight</code> 可以通过 CSS <code>height</code> + CSS <code>padding</code> - 水平滚动条高度 (如果存在)来计算.</p>
<div class="note">
<p><strong>备注:</strong> 此属性会将获取的值四舍五入取整数。 如果你需要小数结果, 请使用 {{ domxref("element.getBoundingClientRect()") }}.</p>
<p>备注:上面的有问题 因为使用element.getBoundingClientRect()只能获取元素的width / height,但是这个值是 offsetWidth / offsetHeight ,包括边框的长度,所以不能获取clientWidth / clientHeight</p>
</div>
<h2 id=".E8.AF.AD.E6.B3.95.E5.92.8C.E5.80.BC" name=".E8.AF.AD.E6.B3.95.E5.92.8C.E5.80.BC">语法</h2>
<pre class="eval">var <var>h</var> = <var>element</var>.clientHeight;
</pre>
<p>返回整数 <code><var>h</var></code>,表示 <code><var>element</var></code> 的 <code>clientHeight</code>(单位像素)。</p>
<p><code>clientHeight</code> 是只读的.</p>
<h2 id=".E8.8C.83.E4.BE.8B" name=".E8.8C.83.E4.BE.8B">示例</h2>
<p><img alt="Image:Dimensions-client.png" src="https://developer.mozilla.org/@api/deki/files/185/=Dimensions-client.png"></p>
<h2 id=".E8.A7.84.E8.8C.83" name=".E8.A7.84.E8.8C.83">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSSOM View', '#dom-htmlelement-clientheight', 'clientheight')}}</td>
<td>{{Spec2('CSSOM View')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h3 id=".E6.B3.A8.E6.84.8F" name=".E6.B3.A8.E6.84.8F">备注</h3>
<p>clientHeight是在IE浏览器对象模型中引入的属性。</p>
<h3 id=".E5.8F.82.E8.80.83" name=".E5.8F.82.E8.80.83">相关链接</h3>
<ul>
<li>{{domxref("HTMLElement.offsetHeight")}}</li>
<li>{{domxref("Element.scrollHeight")}}</li>
<li><a href="https://developer.mozilla.org/en-US/docs/Determining_the_dimensions_of_elements">Determining the dimensions of elements</a></li>
</ul>
|