jsn改变元素的背景颜色
时间: 2023-08-29 10:12:22 浏览: 69
您可以使用以下JS代码来改变元素的背景颜色:
```
document.getElementById("your-element-id").style.backgroundColor = "your-color";
```
其中,"your-element-id" 是您想要改变背景颜色的元素的ID,"your-color" 是您想要设置的背景颜色的值。例如,如果您想要将背景颜色设置为红色,代码如下:
```
document.getElementById("your-element-id").style.backgroundColor = "red";
```
希望能对您有所帮助。
阅读全文