首页 > 其他 > 详细

offsetWidth,clientWidth,scrollWidth,clientLeft,offsetLeft,scrollLeft简单理解

时间:2020-04-21 16:17:54      阅读:48      评论:0      收藏:0      [点我收藏+]
     console.log(div.offsetWidth) //width+padding+border
        console.log(div.offsetHeight)//height+padding+border
        console.log(div.clientWidth)//width+padding-滚动条宽度
        console.log(div.clientHeight)//height+padding-滚动条高度
        console.log(div.scrollWidth)//实际宽度+padding
        console.log(div.scrollHeight)//实际高度+padding
        console.log(div.clientLeft)//自身边框宽度
        console.log(div.clientTop)//自身边框宽度
        console.log(div.offsetLeft)//到父元素左边的距离(自身边框之外到父元素边框之内)
        console.log(div.offsetTop)//到父元素上边的距离(自身边框之外到父元素边框之内)
        console.log(div.scrollLeft)//横向滚动条到最左侧滚动条起点距离
        console.log(div.scrollTop)//纵向滚动条到最上侧滚动条起点距离

 

offsetWidth,clientWidth,scrollWidth,clientLeft,offsetLeft,scrollLeft简单理解

原文:https://www.cnblogs.com/Alex-Song/p/12745077.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!