如何在数据表的fnServerData中获取行数据

时间:2019-04-16 12:47:25

标签: javascript php jquery datatables

我正在使用如下的ajax数据表

$(document).ready(function() {
    var table =  $('#table').dataTable( {
        "iDisplayLength": 10,
        "processing": true,
        "serverSide": true,
        "bStateSave": true,
        "bDeferRender" : true,
        "sAjaxSource": { "url":"<?php echo base_url()?>",

        "type": "GET",
        "orderClasses" : false
      },
        "fnCreatedRow": function( nRow, aData, iDataIndex ) 
        {

        },
        "fnServerData": function (sSource, aoData, fnCallback) {

            $.getJSON(sSource, aoData, function (json) {

                fnCallback(json);
            });
        },

   } );
});

数据加载到表中,但是现在在下一个请求时,我想将最后一行详细信息发送回服务器。我可以在 fnServerData 中发送数据,但是我无法访问表中插入的最后一条记录是动态渲染的。我尝试使用

$('#table tr:last td:last')。html()

fnServerData 中的空白。 我如何在 fnServerData

中获取此数据

0 个答案:

没有答案