首页 前端知识 jquery-获取元素尺寸

jquery-获取元素尺寸

2024-01-31 12:01:06 前端知识 前端哥 423 390 我要收藏

1.获取元素的内容区域的尺寸

width()和height()

2.获取元素内容+padding区域的尺寸

innerWidth()innerHeight()

3.获取元素内容+padding区域+border尺寸

outerWidth()和outerHeight()

4.获取元素内容+padding+border+margin区域

outerWidth(true)和outerHeight(true)

   div{

      width: 200px;

      height: 200px;

      padding: 10px;

      border: 20px solid #ccc;

      margin: 10px;

   }

      console.log($('div').width())    //200    内容区域200

      console.log($('div').innerWidth()) //220  内容区域+padding  200+10+10=220

      console.log($('div').outerWidth()) //260  内容区域+padding+border  200+10+10+20+20

      console.log($('div').outerWidth(true)) //280  200+10+10+20+20+10+10 = 280

转载请注明出处或者链接地址:https://www.qianduange.cn//article/952.html
标签
评论
会员中心 联系我 留言建议 回顶部
复制成功!