我尝试使用background-color
获取td
的{{1}}。但代码不会执行。
我需要循环直到获得" white"颜色作为背景颜色。
这是我尝试过的:
while loop
HTML code:
while ($(row1).children('td:nth-child(' + startIndex + ')').css('background-color') == 'rgba(0,0,0,0)') {
startIndex = startIndex + 1;
}
while ($(row1).children('td:nth-child(' + endIndex + ')').css('background-color') == 'rgba(0,0,0,0)') {
endIndex = endIndex - 1;
}