如何使用 JavaScript 读取 CSS 规则值?
2022-08-30 04:44:46
我想返回一个字符串,其中包含CSS规则的所有内容,就像您在内联样式中看到的格式一样。我希望能够在不知道特定规则中包含的内容的情况下执行此操作,因此我不能仅通过样式名称(如等)将它们拉出。.style.width
The CSS:
.test {
width:80px;
height:50px;
background-color:#808080;
}
到目前为止的代码:
function getStyle(className) {
var classes = document.styleSheets[0].rules || document.styleSheets[0].cssRules
for(var x=0;x<classes.length;x++) {
if(classes[x].selectorText==className) {
//this is where I can collect the style information, but how?
}
}
}
getStyle('.test')