我想更改表格中一个特定单元格的颜色:
为什么以下方法不起作用?

document.getElementById('myTable').rows[i].cells[j].bgColor="#mybgColor";


其中ij肯定是行和单元格范围内的一些整数。
我不需要任何花哨的JQuery左右,只需要这个简单的命令。

最佳答案

CSS样式将覆盖已弃用的bgColor属性。使用.style.backgroundColor代替.bgColor

document.getElementById('myTable').rows[i].cells[j].style.backgroundColor = "#003366";

10-07 23:27