Skip to content

Instantly share code, notes, and snippets.

@lbfsc
lbfsc / download file by JavaScript.js
Created January 11, 2018 03:13
a script about downloading file by JavaScript
function downloadData(data, filename, type) {
var file = new Blob(["\ufeff" + data], { type: type });
if (window.navigator.msSaveOrOpenBlob)
// IE10+
window.navigator.msSaveOrOpenBlob(file, filename);
else {
// Others
var a = document.createElement("a"),
url = URL.createObjectURL(file);
a.href = url;