其他分享
首页 > 其他分享> > scrollWidth/scrollHeight,offsetWidth/offsetHeight,clientWidth/clientHeight

scrollWidth/scrollHeight,offsetWidth/offsetHeight,clientWidth/clientHeight

作者:互联网

原文链接:http://www.cnblogs.com/acaciasun/p/3337646.html

scrollWidth/scrollHeight:

可滚动部分的尺寸

offsetWidth/offsetHeight:

width/height+padding+border,不包含margin

clientWidth/clientHeight:

如果当前元素是根元素(document.documentElement),这两个属性将返回window的尺寸,它们是除去滚动条及其他浏览器“包装”(Chrome)之外内部或视口的尺寸。在其他情况下,这两个属性返回元素的内容加上内边距的尺寸

width+padding,不包含scrollbar

转载于:https://www.cnblogs.com/acaciasun/p/3337646.html

标签:scrollWidth,3337646,clientHeight,www,clientWidth,尺寸,offsetHeight
来源: https://blog.csdn.net/weixin_30267785/article/details/97546575