function downloadFile() {
const link = document.createElement('a');
link.href = 'your_file_url'; // 替换为要下载的文件的URL
link.target = '_blank';
link.download = 'file_name'; // 替换为要保存的文件名
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
}
标签:body,新页,动态创建,js,link,file,document,替换,下载
From: https://blog.51cto.com/u_14816966/8762772