我希望我的代码根据用户在多选项目中选择的内容显示多个表格行。由于某种原因,我的代码仅显示最后选择的项目,有人可以帮我吗?我的代码是:
if(List[x].selected)
{
$('table#newspaper-a tr:not(#header, #trWeekNummer)').hide();
$('table#newspaper-a tr:not(#header, #trWeekNummer)').each(function(){
$('td:nth-child(1)',this).each(function(){
if($(this).text() == List[x].value)
$(this).parent(this).show();
});
});
}