虽然循环没有正确执行jquery nth-child

时间:2018-04-18 06:51:13

标签: javascript jquery while-loop

我尝试使用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;
}

0 个答案:

没有答案