jQuery尺寸、位置操作

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>

请添加图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值