element.clientHeightは、「element」に指定した要素の高さを返すプロパティ。
具体的には、CSSの「height」と「padding」を足した高さ。CSSの「border」と「margin」、水平スクロールバーの高さは含まない。
構文
var $clientHeight = $elementNodeReference.clientHeight;
戻り値
指定した要素の高さ。単位は、ピクセル。
CSSの「height」と「padding」を足し、CSSの「border」と「margin」、水平スクロールバーの高さは含まない値。
サンプル
id属性がsampleである要素の高さ:
サンプルの動作について
「getClientHeight()」ボタンをクリックすると、「id属性がsampleである要素の高さ:」の右横に「120px」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function getClientHeight() {
var $elementNodeReference = document.getElementById( "sample" );
var $clientHeight = $elementNodeReference.clientHeight;
document.getElementById( "sampleOutput1" ).innerHTML = $clientHeight + "px";
}
</script>
function getClientHeight() {
var $elementNodeReference = document.getElementById( "sample" );
var $clientHeight = $elementNodeReference.clientHeight;
document.getElementById( "sampleOutput1" ).innerHTML = $clientHeight + "px";
}
</script>
CSS
<style type="text/css">
#sample{
height: 100px;
width: 300px;
padding: 10px;
background-color: #fffee7;
border: 1px solid #dddddd;
border-radius: 5px;
}
</style>
#sample{
height: 100px;
width: 300px;
padding: 10px;
background-color: #fffee7;
border: 1px solid #dddddd;
border-radius: 5px;
}
</style>
HTML
<div id="sample">
<button onclick="getClientHeight();">getClientHeight()</button>
<p>id属性がsampleである要素の高さ:<span id="sampleOutput1"></span></p>
</div>
<button onclick="getClientHeight();">getClientHeight()</button>
<p>id属性がsampleである要素の高さ:<span id="sampleOutput1"></span></p>
</div>