自动下载 url 文件 独在掘金 2023-06-16 220 阅读1分钟 const a = document.createElement('a'); a.style = 'display: none'; // 创建一个隐藏的a标签 a.href = url; document.body.appendChild(a); a.click(); // 触发a标签的click事件 document.body.removeChild(a);