我创建了一个 html 页面,其中包含五列。最后一个包含一个按钮。(每一行的最后一列都有一个按钮)。
我正在使用数据表插件:
var oTable = $(".datatable-fn").dataTable({
sPaginationType: "full_numbers"
});
现在我需要向表中添加新行。我知道存在fnAddData
执行此操作的函数,但我不知道如何在行的最后一个单元格中添加按钮。
我创建了一个 html 页面,其中包含五列。最后一个包含一个按钮。(每一行的最后一列都有一个按钮)。
我正在使用数据表插件:
var oTable = $(".datatable-fn").dataTable({
sPaginationType: "full_numbers"
});
现在我需要向表中添加新行。我知道存在fnAddData
执行此操作的函数,但我不知道如何在行的最后一个单元格中添加按钮。
You can add any HTML content in the new cells:
$('#example').dataTable().fnAddData( [
giCount+".1",
giCount+".2",
giCount+".3",
"<button>My button</button>" ] );
Using createElement:
var button = document.createElement("button");
button.innerHTML = "My button";
$('#example').dataTable().fnAddData( [
giCount+".1",
giCount+".2",
giCount+".3",
button.outerHTML ] )