我们正在进行一个项目,我们使用表单标签从我们的系统访问一个文件,然后将其下载回我们的系统,基本上在桌面上使用html。我希望将文件保存在桌面上
webghufk1#
您可以尝试以下代码:
<input type="input" id="inputFile" /> <a id="downloadLink">Download the file</a> <script> const fileInput = document.getElementById("inputFile") const downloadLink = document.getElementById("downloadLink") fileInput.addEventListener("change", () => { if (!fileInput.files.length) return; const urlObj = URL.createObjectURL(fileInput.files[0]) downloadLink.href = urlObj }) </script>
1条答案
按热度按时间webghufk1#
您可以尝试以下代码: