我用了

mycurrent_row.setAttribute("bgcolor", "#EEF4EA");

它既适用于Firefox,也适用于chrome。但是没有设置颜色

我用
mycurrent_row.setAttribute("bgcolor", "#EEF4EA");
mycurrent_row.bgcolor = "#EEF4EA";

它都不起作用。

如何在IE中设置行的颜色?

最佳答案

该属性名为bgColor,而不是bgcolor,但是您应该使用backgroundColor CSS property而不是the deprecated HTML attribute bgColor进行样式设置:

mycurrent_row.style.backgroundColor = "#EEF4EA";

10-08 04:34