我在Google Chrome浏览器中的pdf名称文件有问题。我将pdf放入嵌入代码(下面的代码)。 当我下载文件时,我看到要更改的默认值“ download.pdf”。我尝试了很多方法,某些情况下可以在Firefox中使用,但不能在Chrome中使用。关于如何在Chrome中的embed标签中更改文件默认名称的任何想法?
<embed width="100%" height="500px" src="data:application/pdf;base64,'
+ embedTemplateContentPlaceholder + '" type="application/pdf" />
答案 0 :(得分:1)
您应将download
属性设置为文件名。与此类似:
<embed width="100%" height="500px" src="data:application/pdf;base64,'
+ embedTemplateContentPlaceholder + '" type="application/pdf" download="filename.pdf"/>