通过IE(客户端)中的Javascript下载文件?

时间:2018-12-06 15:22:29

标签: javascript html download client-side

我想下载包含Javascript的.PDF。不幸的是,Internet Explorer中不支持“下载”属性。

function SaveAs(URL) {
    var link = document.createElement('a');
	link.href = URL;
	link.setAttribute('download', true);

	//Firefox
	document.body.appendChild(link);

	//simulate click
	link.click();

	//aufräumen
	document.body.removeChild(link);
}

打开文件而不是下载文件。 我无法插入像下面这样的Http-Header,因为它是客户端代码。

Content-Type: application/octet-stream
Content-Disposition: attachment;filename=\"filename.xxx\"

我需要支持-谢谢!

0 个答案:

没有答案