标签:获取元素 turn css样式 style 元素 ted 属性 fun func
/**
* 获取元素的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];
}
标签:获取元素 turn css样式 style 元素 ted 属性 fun func
原文地址:https://www.cnblogs.com/kdiekdio/p/10240842.html