js浏览器保存/IE另存(blob、文件流)

1、IE浏览器另存文件
1)用到的方法:document.execCommand('saveAs');注意这个方法只能保存.html.txt文件,所以设置文件格式时不能设置成其他格式,否则无法触发;
2)实现代码:
let save_screen = window.open('', '_blank', '');
save_screen.document.writeln('保存的内容');
save_screen.document.execCommand('saveAs', '', '文件名');
save_screen.close();

2、IE浏览器保存blob/文件流
1)调用方法:window.navigator.msSaveBlob(blob, fileName);

3、其他浏览器保存blob/文件流
1)实现代码:
var urlObj = window.URL || window.webkitURL || window;
var blob = new Blob([content]);
var a = document.createElement('a');
a.href = urlObj.createObjectURL(blob);
a.download = fileName;
a.style.display = 'none';
document.body.appendChild(a);
a.click();
document.body.removeChild(a);

你可能感兴趣的:(js浏览器保存/IE另存(blob、文件流))