尔游网
您的当前位置:首页getStyle获取元素所绑定的css属性_html/css

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

来源:尔游网


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];}
显示全文