gpt4 book ai didi

jquery - 使用jquery下载文件自定义名称

转载 作者:行者123 更新时间:2023-11-30 23:49:46 25 4
gpt4 key购买 nike

我正在使用 jQuery plugin将 HTML 表导出到 Excel。使用 chrome 时下载的文件名始终为 download.xls,使用 mozilla firefox 时则为 random-string.xls。我希望根据日期创建文件名。例如23-06-2014.xls

下面是 View 文件中的自定义 JS block

$(document).ready(function () {
$("#btnExport").click(function () {
$("#account_table").btechco_excelexport({
containerid: "account_table",
datatype: $datatype.Table
});
});
});

最佳答案

您想要在链接上设置 downloadhref 属性。例如

$("#btnExport").click(function () {
var uri = $("#account_table").btechco_excelexport({
containerid: "account_table",
datatype: $datatype.Table,
returnUri: true
});

$(this).attr('download', 'ExportToExcel.xls') // set file name (you want to put formatted date here)
.attr('href', uri) // data to download
.attr('target', '_blank') // open in new window (optional)
;
});

关于jquery - 使用jquery下载文件自定义名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24504828/

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