如何在IE中设置表格的行背景颜色

时间:2012-11-19 09:17:39

标签: javascript html internet-explorer

我用过

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

它适用于firefox和chrome.but但没有设置颜色,即

我用

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

它既不起作用。

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

2 个答案:

答案 0 :(得分:4)

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

mycurrent_row.style.backgroundColor = "#EEF4EA";

答案 1 :(得分:3)

您可以设置内联样式

mycurrent_row.setAttribute("style", "background:#EEF4EA");