其他分享
首页 > 其他分享> > 关于offsetWidth、clientWidth与scrollWidth

关于offsetWidth、clientWidth与scrollWidth

作者:互联网

三大系列对比

图示

他们的主要用法:

1. offset系列经常用于获得元素位置 offsetLeft    offsetTop;

2. client经常用于获取元素大小 clientWidth      clientHeight;

3. scroll经常用于获取滚动距离 scrollTop     scrollLeft;

4.注意页面的滚动距离通过 window.pageXOffset 获得。

标签:scrollWidth,滚动,元素,clientWidth,获取,用于,经常,offsetWidth
来源: https://www.cnblogs.com/cy1227/p/13050631.html