输入banner图图片脚本导航/分类

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];}