any clean ways to download files like html5 download attribute

前端 未结 2 1489
不思量自难忘°
不思量自难忘° 2021-02-12 21:15

I am fully aware that there are many debates(and solutions) out there in terms of downloading files in javascript/jQuery, such as iFrame, jQueryPlugin.

2条回答
  •  你的背包
    2021-02-12 21:42

    You might want to try FileSaver.js which has support for all modern browsers.

    var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
    saveAs(blob, "hello world.txt");
    

提交回复
热议问题