var $table = $('#myTabledata'); //My data table
//console.log($table);
$('#downloadbutton').click(function() {
$table.tableExport({
type: 'csv',
escape: false,
exportDataType: 'all',
refreshOptions: {
exportDataType: 'all'
}
});
});
我有上面的代码。但是此代码仅下载在dom中呈现的数据。 我在第二页中有一些分页的数据,但是没有在excel中下载。如何使用tableexport js下载表中存在的所有数据?有什么主意吗?