Skip to content

Instantly share code, notes, and snippets.

@wangwen1220
Created July 1, 2014 02:24
Show Gist options
  • Save wangwen1220/77cbe44f002d988b664a to your computer and use it in GitHub Desktop.
Save wangwen1220/77cbe44f002d988b664a to your computer and use it in GitHub Desktop.
js 下载文件
// js 下载文件
function downloadFile(url) {
if (typeof(downloadFile.iframe) == 'undefined') {
downloadFile.iframe = document.createElement('iframe');
document.body.appendChild(downloadFile.iframe);
}
downloadFile.iframe.src = url;
downloadFile.iframe.style.display = 'none';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment