jQuery尺寸
●以上参数为空,则是获取相应值,返回的是数字型。
●如果参数为数字,则是修改相应值。
●参数可以不必写单位。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="jquery.min.js"></script>
<style>
div{
width: 200px;
height: 200px;
background-color: pink;
padding: 10px;
border: 15px solid red;
margin: 20px;
}
</style>
</head>
<body>
<div></div>
<script>
$(function(){
console.log($("div").width());
//2.加上padding大小
console.log($("div").innerWidth());
//3.加上padding和border大小
console.log($("div").outerWidth());
//4.加上padding和border和margin大小
console.log($("div").outerWidth(true));
})
</script>
</body>
</html>
jQuery位置
offset()设置或获取元素偏移
①offset0 方法设置或返回被选元素相对于文档
的偏移坐标,跟父级没有关系。
②该方法有2个属性left. top ,offset().top 用于获取距离文档顶部的距离, offset().left用于获取距离文档左侧的距离。
③可以设置元索的偏移: offset({ top: 10, left: 30 });
position(获取元素偏移
①position0 方法用于返回被选元索相对于带有定位的父级
偏移坐标,如果父级都没有定位,则以文档为准。
scrollTop0/scrollLeft()设置或获取元素被卷去的头部和左侧
①scrollTop() 方法设置或返回被选元素被卷去的头部。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="jquery.min.js"></script>
<style>
*{
margin: 0;
padding: 0;
}
.father{
width: 400px;
height: 400px;
background-color: pink;
margin: 100px;
overflow: hidden;
position: relative;
}
.son{
width: 150px;
height: 150px;
background-color: red;
position: absolute;
}
</style>
</head>
<body>
<div class="father">
<div class="son"></div>
</div>
<script>
$(function(){
//1.获取设置距离文档的位置(偏移)offset
console.log($(".son").offset());
console.log($(".son").offset().top);
// $(".son").offset({
// top:200,
// left:200
// });
//2.获取距离带有定位父级位置(偏移)position
//如果没有带有定位的父级,则以文档为准
console.log($(".son").position());
})
</script>
</body>
</html>