我正在使用如下的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
中获取此数据