好吧,我有一个函数可以获取点击的 html 元素的背景颜色。但是,当我通过 css 设置背景颜色时,使用一个类,x.style.background 中对象的背景颜色只返回“”;
我的代码:HTML:
<li onclick="setCor(this)" id="vermelho" class="vermelho">Vermelho</li>
JS函数:
function setCor(x){
cor = x.style.backgroundColor;
}
还有 .vermelho 类:
.vermelho{
background-color: #ff0000;
}
如何通过 JS 获取 css 值?我不能使用 jQuery,只需要 JS。