offsetWidth是否包括滾動條

antzone發表於2017-04-11

關於offsetWidth的基本用法可以參閱js offsetWidth一章節。

下面就通過程式碼例項驗證一下offsetWidth是否包括滾動條的寬度。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#top,#bottom{
  width:200px;
  height:100px;
  background:red;
  overflow:auto;
  margin:50px;
}
#top_child,#bottom_child {
  width:20px;
  background:blue;
}
#top_child{
  height:160px;
}
#bottom_child{
  height:60px;
}
</style>
<script>
window.onload = function () {antzone
  var oantzone = document.getElementById("antzone");
  var otop = document.getElementById("top");
  var obottom = document.getElementById("bottom");
  var str = "";
  str = str + "top元素的offsetWidth:" + otop.offsetWidth+"<br/>";
  str = str + "bottom元素的offsetWidth:" + obottom.offsetWidth;
  oantzone.innerHTML = str;
}
</script>
</head>
<body>
<div id="top">
  <div id="top_child"></div>
</div>
<div id="bottom">
  <div id="bottom_child"></div>
</div>
<div id="antzone"></div>
</body>
</html>

由上面的程式碼可以證明,offsetWidth是包括滾動條的尺寸的。

相關文章