元素的位置属性offset、client、scroll

2023-12-27 10:32:16

一、offset、client、scroll

1.1 offset

  • offsetTop、offsetLeft
  1. offsetTop:元素到offsetParent顶部的距离
  2. offsetParent:距离元素最近的具有定位的祖宗元素(relative、absolute、fixed),若祖宗元素都不符合条件,offsetParent为body。
  3. offsetLeft:同上。
  • offsetWidth、offsetHeight
  1. offsetWidth = width + 左右padding +左右border
  2. offsetHeight = height + 上下padding + 上下border
    注意他们的宽高都包含滚动条。

1.2 client

  • clientWidth、clientHeight
  1. clientWidth = width + 左右padding
  2. clientHeight = height + 上下padding
  • clientTop、clientLeft
  1. clientTop = boder.top(上边框的宽度)
  2. clientLeft = boder.left(左边框的宽度)

1.3 scroll

  • scrollWidth、scrollHeight
    scrollWidth:获取指定标签内容层的真实宽度(可视区域宽度+被隐藏区域宽度) scrollHeight:获取指定标签内容层的真实高度(可视区域高度+被隐藏区域高度)
  • scrollTop、scrollLeft
    scrollTop: 内容层顶部 到 可视区域顶部的距离
    scrollLeft: 内容层左端 到 可视区域左端的距离

引用一张图可以直观表示这些属性
在这里插入图片描述

文章来源:https://blog.csdn.net/Mahuicool/article/details/135236045
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。