一切都可以在这里找到:http: //jsfiddle.net/dweiliu/NBFMq/3/
这是有问题的相关代码:
$('article.weeklyStandings').each(function(){
var numPlayers = $(this).children('table tr').length;
$(this).children('h2').append(" - " + numPlayers + " Players");
});
我可能有多个数据表,其结果显示在 jsfiddle 中。我想通过查看表格中的行数来指出在任何给定周打球的玩家数量。
为什么$(this).children('table tr').length;
在 jsfiddle 上返回 0?请注意,在我的本地机器上,同样的代码返回 3。