下载他的pdf文件时如何设置名称?

时间:2019-12-03 15:32:56

标签: javascript html pdf

我在Google Chrome浏览器中的pdf名称文件有问题。我将pdf放入嵌入代码(下面的代码)。 当我下载文件时,我看到要更改的默认值“ download.pdf”。我尝试了很多方法,某些情况下可以在Firefox中使用,但不能在Chrome中使用。关于如何在Chrome中的embed标签中更改文件默认名称的任何想法?

<embed width="100%" height="500px" src="data:application/pdf;base64,'
+ embedTemplateContentPlaceholder + '" type="application/pdf" />

enter image description here

1 个答案:

答案 0 :(得分:1)

您应将download属性设置为文件名。与此类似:

<embed width="100%" height="500px" src="data:application/pdf;base64,'
+ embedTemplateContentPlaceholder + '" type="application/pdf" download="filename.pdf"/>