获取元素的CSS样式属性值 IE兼容写法

/**
* 获取元素的CSS样式属性值
*/
function css(element, attrName) {
  /*if (window.getComputedStyle)
  return window.getComputedStyle(element)[attrName]
  return element.currentStyle[attrName];*/

  return window.getComputedStyle ? getComputedStyle(element)[attrName]: element.currentStyle[attrName];
}

posted on 2019-01-08 18:56  麻烦ing  阅读(831)  评论(0编辑  收藏  举报

导航