获取元素的所有计算样式

时间:2011-12-24 17:10:14

标签: javascript jquery css

我希望获得应用于元素的所有样式,例如在Chrome开发者工具中,您在右上角部分看到称为“Computed Style”我希望获得所有列表是否有任何其他简单的方法来获取所有列表和财产

Source Code

我试过这个javascript但它不是我想要的,我必须手动编写css属性

我只是希望早期或默认情况下应用于元素的所有样式

1 个答案:

答案 0 :(得分:1)

尝试使用此功能(updated your jsFiddle);

function getComputedStyle(elm, style) {
    var computedStyle;
    if (typeof elm.currentStyle != "undefined") {
        computedStyle = elm.currentStyle;
    }
    else {
        computedStyle = document.defaultView.getComputedStyle(elm, null);
    }
    return computedStyle[style];
}

getComputedStyle()函数来自I does Javascript!