我目前正在使用数据表来显示三列,其中包含不同数量的信息行。
该表已设置为,当单击列标题时,该表将根据该列进行排序。我正在尝试使用 fnGetData 来获取现在已排序的可见数据。但是,我的尝试只是返回初始化表的原始数据。
这大致是代码的样子:
$("#example").click(function() {
oTable = $('#' + tableName).dataTable();
var secondCellArray=[];
$.each( oTable.fnGetData(), function(i, row){
secondCellArray.push( row[0],row[1],row[2]);
})
console.log( secondCellArray)
});