摆脱行中空tds的空白html tr

时间:2016-05-31 18:49:58

标签: html html-table

我怎样才能动态处理这样的案例,以便它们消失或者没有空间让它们显得消失?

</tr><tr>
<td></td><td></td><td></td>
</tr><tr>
<td></td><td></td><td></td>
</tr><tr>

1 个答案:

答案 0 :(得分:0)

你可以用这样的jQuery做到这一点:

  $('tr').filter(function() {
    $this = $(this);
    return (!$.trim($this.text()).length);
  }).remove();

这将删除全部为空<tr>

<td>

如果您要删除所有空<td>,那么只需定位它而不是tr

您可以在https://jsfiddle.net/wuh7cwya/进行测试,我点击按钮进行设置。