0
我下面這個例子:如何在Datatable中確認文件導出後重新加載頁面?
https://datatables.net/extensions/buttons/examples/initialisation/export
我想,如果我確認文件導出,該頁面將重新加載。我怎樣才能做到這一點?
我下面這個例子:如何在Datatable中確認文件導出後重新加載頁面?
https://datatables.net/extensions/buttons/examples/initialisation/export
我想,如果我確認文件導出,該頁面將重新加載。我怎樣才能做到這一點?
您可以自定義按鈕的動作。試試這個:
$(document).ready(function() {
$('#example').DataTable({
dom: 'Bfrtip',
buttons: [
{//Start the creation of the button
extend: "csv",//It's a button that export the table dtat into a CSV file
text: "export and relode",//The text of the button
action: function(e, dt, button, config) {
//The action of the button
$.fn.dataTable.ext.buttons.csvHtml5.action.call(this, e, dt, button, config);//Export the data
window.location.reload(false);//Relode the page
}
}
]
});
});
這裏的工作Fiddle
可能的複製[如何使用JavaScript來重新加載頁面?](https://stackoverflow.com/questions/3715047/how-to-重裝-A-頁面使用的JavaScript) –