Skip to content

Instantly share code, notes, and snippets.

@smallnewer
Last active December 1, 2015 06:13
Show Gist options
  • Save smallnewer/14afabe9d6d603444838 to your computer and use it in GitHub Desktop.
Save smallnewer/14afabe9d6d603444838 to your computer and use it in GitHub Desktop.
download file
/**
* 只支持chrome
**/
function downloadFile (type, filename, filecon) {
filename = prompt('填写保存的名字', filename);
var blob = new Blob([filecon], { type: type });
var url = window.webkitURL.createObjectURL(blob);
var a = document.createElement("a");
a.download = filename;
a.href = url;
a.click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment