其他分享
首页 > 其他分享> > offset、 client 、 scroll 三大系列

offset、 client 、 scroll 三大系列

作者:互联网

1.offset   只能获取,不能赋值

(1)元素.offsetParent   //返回当前元素最近的定位父元素

console.log (son.offsetParent)

(2)元素.offsetLeft     //返回offsetParent的左偏移量

console.log (son.offsetLeft)

(3)元素.offsetTop      //返回offsetParent的上偏移量

console.log (son.offsetTop)

(4)元素.offsetWidth    //返回当前元素的宽  content+padding+border

console.log (son.offsetWidth)

(5)元素.offsetHeight   //返回当前元素的高  content+padding+border

console.log (son.offsetHeight)

2.client  只能获取不能赋值

(1)元素.clientWidth    //元素可视区的宽   content+padding

 console.log('clientWidth'+son.clientWidth) 

(2)元素.clientHeight    //元素可视区的高   content+padding

 console.log('clientHeight'+son.clientHeight) 

3.scroll

(1)元素.scrollWidth  元素内容的宽

console.log( son.scrollWidth)

(2)元素.scrollHeight 元素内容的高

console.log( son.scrollHeight)

(3)元素.scrollLeft  元素内容左侧滚动出去的距离   可以赋值 不需要写单位

(4)元素.scrollTop  元素内容顶部滚动出去的距离   可以赋值 不需要写单位

father.onscroll=function(){
  console.log( father.scrollLeft)
 console.log( father.scrollTop)

}

 

标签:console,log,元素,son,content,client,scroll,三大,offsetParent
来源: https://www.cnblogs.com/zhaodz/p/11621152.html