更新数据表中的选定行

时间:2019-06-03 16:14:33

标签: jquery datatables

我正在使用以下代码:

PrtTbl.rows({ selected: true }).every(function (rowIdx, tableLoop, rowLoop) {
                               PrtTbl.row(this).cell(rowIdx,2).data("").draw()
                               PrtTbl.row(this).cell(rowIdx, 3).data("").draw()
                           });

更新数据,但更新所有行

表的结构如下:

<tr role="row" class="even" id="aa.bb-1559564774538">
    <td>AA</td>
    <td>BB</td>
    <td>CC</td>
</tr>

我的问题是,选择行后如何获取 id ?并使用该ID更新我的第一个和第二个单元格?

0 个答案:

没有答案