我正在尝试将包含特定文本的表行数输出到标签中。
当我单步执行JavaScript时,count变量最初包含计数,但在步进到下一行时最终会以undefined值结束。
var lblPending = document.getElementById("lblPending");
var count = $("#match-table tr").filter(function() { return $.text([this]) === 'Pending Credit'; }).length;
if (count > 0) {
lblPending.innerHTML = count + " Pending";
}
else {
$("#lblPending").hide();
}
是否会导致这种情况的回报?