代码改变世界

获取对象样式

2012-09-19 10:07  江苏黑马  阅读(266)  评论(0编辑  收藏  举报
// 获取对象计算的样式
        this.getComputerStyle = (function() {
            var body = document.body;
            if (body.currentStyle) {// IE浏览器
                return function(elem) {
                    return elem.currentStyle;
                }
            } else if (document.defaultView.getComputedStyle) {// 标准浏览器
                return function(elem) {
                    return document.defaultView.getComputedStyle(elem, null);
                }
            }
        })();