我是JQuery的新手。 谁能告诉我如何将复选框添加到jquery dataTable?
答案 0 :(得分:22)
我猜你在这里使用jQuery datatables插件:
您可以使用aoColumnDefs
参数自定义列,例如 -
aoColumnDefs : [
{
aTargets: [0], // Column number which needs to be modified
fnRender: function (o, v) { // o, v contains the object and value for the column
return '<input type="checkbox" id="someCheckbox" name="someCheckbox" />';
},
sClass: 'tableCell' // Optional - class to be applied to this table cell
}]