0

此代码在添加包含来自 ajax 请求的数据但无法删除动态表的动态表时有效。我在下面的代码显示每当我单击树节点时,它应该将其 mysql 表数据加载到 HTML 表中。

     $("#treeNodes").on("select_node.jstree", function(event, data)
     {
           var node = data.rslt.obj;
           var nodeID = node.attr("id");
           event.stopImmediatePropagation;
           if(/leaf/.test(nodeID))
           {
                $(".tableData > *").remove(); // remove all table data (tr rows) before adding the new data and not working or firing off.
                addTableData(); // This function get the data from a mysql table and loads it into an HTML table.
           }

     });

     <table>
            <tbody class='tableData'></tbody>
    </table>

有人能告诉我这段代码如何识别新添加的动态表数据以便将其删除吗?

4

2 回答 2

1

试试这个:

$('.tableData').empty();

empty()方法从调用它的元素中删除所有后代和文本。

于 2013-10-02T15:53:48.940 回答
0

这应该有效:

$(".tableData").html("");

但是anOG写的更快。所以empty()改用。

于 2013-10-02T15:52:58.480 回答