我想下载包含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\"
我需要支持-谢谢!