当前位置:Gxlcms > html代码 > getStyle获取元素所绑定的css属性_html/css_WEB-ITnose

getStyle获取元素所绑定的css属性_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:23人阅读

function getStyle(el,cssProp){    if(el.currentStyle){   // ie        return el.currentStyle[sccProp];    }    else if(window.getComputedStyle){        return window.getComputedStyle(el)[sccProp];    }    //     return el.style[cssProp];}

人气教程排行