jq offset方法和position方法

<style>
* {
margin: 0;
padding: 0;
}

.father {
width: 400px;
height: 400px;
background-color: pink;
position: relative;
margin: 100px;
}

.son {
width: 200px;
height: 200px;
background-color: red;
position: absolute;
top: 100px;
left: 100px;
}
</style>
</head>
<body>

<div class="father">
<div class="son"></div>
</div>

<script src="jquery-1.12.4.js"></script>
<script>
$(function () {

//获取元素的相对于document的位置
console.log($(".son").offset());

//获取元素相对于有定位的父元素的位置
console.log($(".son").position());


});
</script>
posted @ 2018-12-12 20:25  lujieting0  阅读(354)  评论(0编辑  收藏  举报