首页 > 代码库 > js获取样式的兼容写法

js获取样式的兼容写法

1 var currentStyle = function(element){2     return element.currentStyle || document.defaultView.getComputedStyle(element, null);3 }

 

js获取样式的兼容写法