JavaScript三大家族

2018-11-13  本文已影响0人  AuglyXu

获取样式的方法

getComputedStyle

currentStyle

兼容性处理
function getStyle(obj,attr){
  if(obj.currentStyle){
    return obj.currentStyle[attr]
  }else{
    return window.getComputedStyle(obj, null)[attr];
  }
}

offset家族

offsetWidth和offsetHeight

offsetLeft和offsetTop

client家族

clientWidth和clientHeight

clientLeft和clientTop

scroll家族

上一篇下一篇

猜你喜欢

热点阅读