zl程序教程

您现在的位置是:首页 >  工具

当前栏目

下载excel文件,链接,通过按钮点击创建a标签实现

Excel文件链接下载 实现 创建 通过 标签
2023-09-11 14:18:36 时间
let link = document.createElement('a')
link.style.display = 'none'
link.href = this.url.exportXlsUrl
link.setAttribute('download', fileName + '.xls')
document.body.appendChild(link)
link.click()
document.body.removeChild(link) //下载完成移除元素