如何使用JavaScript设置HTML元素的CSS背景颜色?
通常,通过使CSS属性驼峰命名为caseCase而不使用任何破折号,可以将CSS属性转换为JavaScript。如此background- color成为backgroundColor。
background- color
backgroundColor
function setColor(element, color) { element.style.backgroundColor = color; } // where el is the concerned element var el = document.getElementById('elementId'); setColor(el, 'green');