此代码在添加包含来自 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>
有人能告诉我这段代码如何识别新添加的动态表数据以便将其删除吗?