欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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

程序员文章站 2023-12-29 11:32:22
...
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];}

上一篇:

下一篇: