http://jsfiddle.net/dweiliu/bcHsy/2/
我已经有一段时间了,我错过了一些东西......
jQuery的相关块。
$('article.weeklyStandings').each(function(){
var winningPercentage = $('tr.record:nth-of-type(2)',this).find('td:nth-of-type(4)');
$('tr.record',this).each(function(){
var percentageWon = $(this).find('td:nth-of-type(4)');
if (percentageWon == winningPercentage) {
$('td:nth-of-type(1)', this).html("winner");
}
});
});
jsfiddle 链接中提供的上下文:http: //jsfiddle.net/dweiliu/bcHsy/2/
我有一个表,在第 4 列中有一些结果。我想遍历列中的每一行并将值与第二行进行比较。如果是 == 到那个值,我想做点什么。
我究竟做错了什么?