getStyle 获取元素所绑定的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];
}


你可能感兴趣的:(getStyle 获取元素所绑定的css属性)