Element.clientHeight

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Element.clientHeight 唯讀屬性會回傳元素內部高度(像素),包含 padding 但並未包含水平滾動條、border、margin。

clientHeight 可以被計算成 CSS height + CSS padding - 水平滾動條的高度(如果有顯示)

备注: 這個屬性會以四捨五入進位取整數. 如果要使用非整數值, 使用 element.getBoundingClientRect().

表達式

var h = element.clientHeight;

h 代表元素高度(pixels)的正整數.

範例

Image:Dimensions-client.png

規範

Specification
CSSOM View Module
# dom-element-clientheight

clientHeight 是在 the Internet Explorer 物件介紹的屬性.

參見