offsetWidth和clientWidth屬性的區別是什麼

螞蟻小編發表於2017-03-26

標題中的兩個屬性在dom操作中比較常見,它們都會返回指定元素的一個寬度,但是兩者是有區別的,下面就通過程式碼例項介紹一下它們兩者的區別,當然offsetHeight和clientHeight屬性也是如此,同樣的道理。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
*{
  margin:0px;
  padding:0px;
}
body{text-align:center;}
#thediv{
  width:150px;
  height:200px;
  background:green;
  margin:0px auto;
  overflow:scroll;
  margin-top:50px;
  border:5px solid #60F;
}
#inner{
  width:50px;
  height:300px;
  margin:0px auto;
  background:red;
  padding:15px;
}
#show{
  width:100px;
  margin:0px auto;
}
</style>
<script type="text/javascript">
window.onload=function(){
  var obt=document.getElementById("bt");
  var oshow=document.getElementById("show");
  var odiv=document.getElementById("thediv");
  obt.onclick=function(){
    oshow.innerHTML="clientHeight:"+odiv.clientHeight+"<br/>";
    oshow.innerHTML=oshow.innerHTML+"offsetHeight:"+odiv.offsetHeight;
  }
}
</script>
</head>
<body>
<div id="thediv">
  <div id="inner"></div>
</div>
<div id="show"></div>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

上面的程式碼點選按鈕可以獲取響應屬性的值,下面介紹一下它們兩者的區別。

clientHeight屬性返回的是元素可見內容區域的高度尺寸,也就是padding+height-滾動條的高度尺寸。

offsetHeight屬性返回的是元素的佔據的高度尺寸,也就是height+border+padding的值。

相關文章