jQuery offset()返回值與外邊距margin的關係

admin發表於2017-03-26

關於offset()函式的作用大家可以參閱jQuery offset()方法一章節。

下面通過程式碼例項演示一下此函式的返回值是否和外邊距有關係,程式碼如下:

[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;
}
#box{
  width:400px;
  height:600px;
  background:blue;
  position:relative;
}
#inner{
  width:100px;
  height:100px;
  background:#CCC;
  position:absolute;
  left:0px;
  top:50px;
  margin:50px;
  text-align:center;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#inner").text($("#inner").offset().top)
})
</script>
</head>
<body>
<div id="box">
  <div id="inner"></div>
</div>
</body>
</html>

從上面的演示程式碼可以看出值是從元素的外邊緣算起的,包括margin這一塊距離。

相關文章