我有一个条件可以根据比较值更改表格行的背景颜色。我想集成另一个比较两个单元格并仅在这些单元格上返回背景颜色的条件。
我已经在桌子上运行了一个循环
for (i = 0; i < rows.length; i++) {
cells = rows[i].getElementsByTagName('td');
这就是我所拥有的,但它将颜色结果应用于整个列而不是每个单元格..
if (cells[10].innertext !== cells[11].innerText)
cells[10].style.backgroundColor = "red";
cells[11].style.backgroundColor = "red";
else
(cells[10].innertext == cells[11].innerText)
cells[10].style.backgroundColor = "green";
cells[11].style.backgroundColor = "green";
谢谢您的帮助!