必威体育Betway必威体育官网
当前位置:首页 > IT技术

JS中的位置和宽度:clientWidth、offsetWidth、scrollWidth等区别

时间:2019-06-06 15:40:00来源:IT技术作者:seo实验室小编阅读:90次「手机版」
 

clientwidth

 首先定义一个p。

然后稍微装修一下

下面开始区分

    一、clientwidth和clientHeigh 、 clientTop和clientLeft

1,clientWidth的实际宽度

clientWidth = width+左右padding

2,clientHeigh的实际高度

clientHeigh = height + 上下padding 

3,clientTop的实际宽度

  clientTop = boder.top(上边框的宽度)

4,clientLeft的实际宽度

clientLeft = boder.left(左边框的宽度)

    二、offsetwidth和offsetHight 、 offsettopoffsetleft

    1,offsetWidth的实际宽度

    offsetWidth = width + 左右padding + 左右boder

2,offsetHeith的实际高度

         offsetHeith = height + 上下padding + 上下boder

   3,offsetTop实际宽度

          offsetTop:当前元素 上边框 外边缘 到 最近的已定位父级(offsetparent) 上边框 内边缘的 距离。如果父

    级都没有定位,则分别是到body 顶部 和左边的距离

    4,offsetLeft实际宽度

 offsetLeft:当前元素 左边框 外边缘 到 最近的已定位父级(offsetParent) 左边框 内边缘的            距离。如果父级都没有定位,则分别是到body 顶部 和左边的距离

    三、scrollWidth和scrollheight 、 scrollTop和scrollLeft

1,scrollWidth实际宽度

 scrollWidth:获取指定标签内容层的真实宽度(可视区域宽度+被隐藏区域宽度)。

 2,scrollHeight的实际高度

scrollHeight:获取指定标签内容层的真实高度(可视区域高度+被隐藏区域高度)

 3,scrollTop

   scrollTop :内容层顶部 到 可视区域顶部的距离。

        4,scrollLeft

  scrollLeft:内容层左端 到 可视区域左端的距离.

相关阅读

JS获取clientWidth大小(转)

// 获取窗口宽度 if (window.innerWidth) winWidth = window.innerWidth; else if ((document.body) && (document.body.clientWi

offsetWidth等等的介绍

最近弄了一个放大镜的案例,所以在这里写了一下关于dom中offsetWidth等相关属性 给个图,大家体验下 有兴趣的可以自己去试下 <!DOC

js中clientWidth、offsetWidth

clientWidth:width+padding2;offsetWidth:width+padding2+border*2<p class="box">我是box</p> <style> *{

offsetWidth 和 width

浏览器offsetWidth、clientWidth、scrollWith等总结

对象尺寸会涉及width和height,我们以width为例,height则是一样的道理。 1、clientWidth:对象可见的宽度,不包括滚动条等边线,会随窗口

分享到:

栏目导航

推荐阅读

热门阅读