gpt4 book ai didi

javascript - 数据表中确认文件导出后如何重新加载页面?

转载 作者:行者123 更新时间:2023-12-03 03:41:50 24 4
gpt4 key购买 nike

我正在遵循这个例子:

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 - 数据表中确认文件导出后如何重新加载页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45585464/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com