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

寻技术 Html/CSS 2023年08月08日 107

/**
* 获取元素的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];
}

关闭

用微信“扫一扫”