我想使用 html 和 css 制作表格。但我的问题是我希望表格有 2 种颜色的行,一种橙色和一种白色....我使用 javascript 来填充表格。但我不能在第二种情况下改变颜色..使用Javascript时我应该使用什么sintax来改变行的颜色,因为它给了我一个错误......我的代码如下:
<table>
<tr>
<th>Account Type</th>
<th>Minimun Required</th>
<th>Rate</th>
<th>Compounded</th>
</tr>
<!--To fill the table with javascript-->
<script >
for (var j=0;j<col1.length;j++){
if (j%2==0) {
document.write("<tr><td>" + col1[j] + " </td>");
document.write("<td>" + col2[j] + "</td>");
document.write("<td>" + col3[j] + "</td>");
document.write("<td>" + col4[j] + "</td></tr>");
}
else
{
document.write("<tr bgcolor="#d9531e"><td>" + col1[j] + " </td>");
document.write("<td>" + col2[j] + "</td>");
document.write("<td>" + col3[j] + "</td>");
document.write("<td>" + col4[j] + "</td></tr1>");
}}
</script>
</table>
错误在这一行:
document.write("<tr bgcolor="#d9531e"><td>" + col1[j] + " </td>");
谢谢!