function getStyle(ele,attr){ if(typeof window.getComputedStyle != 'undefined'){ return window.getComputedStyle(ele,null)[attr]; }else if(typeof ele.currentStyle != 'undefined'){ return ele.currentStyle[attr]; } }
获取元素计算后的样式(跨浏览器)
上次更新时间 : 2013-04-21 20:28
暂无评论