我是 JQuery 的新手。谁能告诉我如何将复选框添加到 jquery 数据表?
问问题
23618 次
1 回答
23
我猜你在这里使用 jQuery 数据表插件:
您可以使用该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
}]
于 2012-09-26T08:36:00.583 回答