通过属性设置样式:style
ele.style.backgroundColor = 'red'
ele.style['backgroundColor'] = 'red'
ele.style['background-color'] = 'red'
可以通过覆盖或更新属性同时设置多个样式:cssText
ele.style.cssText = 'background-color: red; color: white;'
ele.style.backgroundColor
ele.style['backgroundColor']
ele.style['background-color']
const styles = window.getComputedStyle(ele)
// 获取计算后的样式
const bgColor = styles.getPropertyValue('background-color')
ele.currentStyle
ele.style.backgroundColor = ''
// or
ele.style.removeProperty('background-color')
// Does NOT work
ele.style.removeProperty('backgroundColor')