答案 0 :(得分:0)
由于我看不到您完整的 DOM ,我将为您提供一个思路,如何遍历这些行并返回带有警告的行-
var allTr = document.getElementsByClassName("classNameOnTr");
Array.prototype.forEach.call(allTr, function(tr) {
// all tds within a tr
var trAllTd = tr.children;
// first td out of all
var firstTd = trAllTd[0];
if(firstTd.children[0]) {
// this is the probable div which creates the warning indicator
// write your logic to check if the div exist here
// break the loop if you find it here and return the td
}
});
Note:
我编写了冗长的代码,以使您更加了解如何进行操作。如果了解得很好,可以将其缩短一两行。