Rumah >hujung hadapan web >html tutorial >getStyle 获取元素所绑定的css属性_html/css_WEB-ITnose
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];}