我希望获得应用于元素的所有样式,例如在Chrome开发者工具中,您在右上角部分看到称为“Computed Style”我希望获得所有列表是否有任何其他简单的方法来获取所有列表和财产
我试过这个javascript但它不是我想要的,我必须手动编写css属性
我只是希望早期或默认情况下应用于元素的所有样式
答案 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!