新建一个a标签,设置董文美,download属性,添加给body,并在下载后移除
var alink = document.creatElement(‘a‘) alink.style.display = ‘none‘ alink.href = fileURL alink.setAttribute("download", ‘文件名.txt‘) document.body.appendChild(alink) alink.click() document.body.removeChild(alink) window.URL.revokeObjectURL(fileURL) //释放
原文:https://www.cnblogs.com/ashen1999/p/13380879.html