2

我用了

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

它适用于 firefox 和 chrome。但在 ie 中没有设置颜色

我用

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

它既不工作。

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

4

2 回答 2

4

该属性名为bgColor,而不是bgcolor,但您应该使用backgroundColor CSS 属性而不是弃用的 HTML 属性 bgColor

mycurrent_row.style.backgroundColor = "#EEF4EA";
于 2012-11-19T09:19:31.410 回答
3

您可以设置内联样式

mycurrent_row.setAttribute("style", "background:#EEF4EA");
于 2012-11-19T09:19:45.720 回答