saveAs

saveAs 生成文件

function download() { var content = 'Hello World!'; var blob = new Blob([content], {type: 'text/plain'}); saveAs(blob, 'file.txt'); } ......
文件 saveAs
共1篇  :1/1页 首页上一页1下一页尾页