element.clientWidthは、「element」に指定した要素の幅を返すプロパティ。
具体的には、CSSの「width」と「padding」を足した幅。CSSの「border」と「margin」、垂直スクロールバーの幅は含まない。
構文
var $clientWidth = $elementNodeReference.clientWidth;
戻り値
指定した要素の幅。単位は、ピクセル。
CSSの「width」と「padding」を足し、CSSの「border」と「margin」、垂直スクロールバーの幅は含まない値。
サンプル
id属性がsampleである要素の幅:
サンプルの動作について
「getClientWidth()」ボタンをクリックすると、「id属性がsampleである要素の幅:」の右横に「320px」と表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
function getClientWidth() {
var $elementNodeReference = document.getElementById( "sample" );
var $clientWidth = $elementNodeReference.clientWidth;
document.getElementById( "sampleOutput1" ).innerHTML = $clientWidth + "px";
}
</script>
function getClientWidth() {
var $elementNodeReference = document.getElementById( "sample" );
var $clientWidth = $elementNodeReference.clientWidth;
document.getElementById( "sampleOutput1" ).innerHTML = $clientWidth + "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="getClientWidth();">getClientWidth()</button>
<p>id属性がsampleである要素の幅:<span id="sampleOutput1"></span></p>
</div>
<button onclick="getClientWidth();">getClientWidth()</button>
<p>id属性がsampleである要素の幅:<span id="sampleOutput1"></span></p>
</div>