$("#download").click(function () {
const data = result // 这里填内容的字符串
const blob = new Blob([data], {type: "text/plain"})
//const blob = new Blob([data], {type: 'audio/wav'})
const a= document.createElement("a")
a.href = URL.createObjectURL(blob)
a.download = "fileName" // 这里填保存成的文件名
a.click()
URL.revokeObjectURL(a.href)
a.remove();
1.data放的字符串
2.文件名可以自定义,改成test.txt则是txt文件,意思是可以自定义文件类型。