如何在不覆盖最后一个属性的情况下为每个元素添加新属性?在此示例中,H2 backgroundColor 将覆盖 H2 颜色:
var cssObject = {}
function updateAllCSS(element, property, value) {
cssObject[element] = [property]
cssObject[element][property] = value
}
updateAllCSS('h2', 'color', '#000')
updateAllCSS('h2', 'backgroundColor', '#FFF')
console.log(cssObject.h2.color)
任何帮助都会很棒:)