0

这是我的桌子:http: //i.stack.imgur.com/sFwZR.jpg

这里我有一个表,我需要隐藏所有行(tr),其中 Course(表的 td)是 2(例如),并留下其他行。第二种情况是保留课程为 2 的所有例外(例如)。拜托,你能建议我如何正确地做吗?

4

1 回答 1

0

这应该工作正常..

$('#yourTableID tr').each(function(){
    if($(this).find('td:eq(1)').text().trim()=='2'){
        $(this).hide();
    }
});
于 2013-03-17T18:46:42.073 回答