5

我需要删除所有空的 td 单元格,我可以用 jQuery 做到这一点吗?

<td></td>

if(td == empty){
$("td").remove();
}

我不确定如何写我想要做的事情。

4

3 回答 3

13

这是要走的路:{伪类空}

$("td:empty").remove();
于 2013-04-12T16:24:09.950 回答
3

删除所有空的 td

$('td').each(function() {
    if ($(this).html() == '') {
        $(this).remove();
    }
  }
于 2013-04-12T16:20:57.990 回答
2

You can use .each()

$("td").each(function() {
    if ($(this).html() == "") {
        $(this).remove();
    }
}
于 2013-04-12T16:21:59.140 回答