项目要求页面显示word文件,就将其word转成pdf在显示到页面。 但是在谷歌Chrome浏览器 和360极速版中pdf文件有时无法显示 出现 无法加载 Chrome PDF Viewer
页面显示pdf使用的是embed标签
<embed id="pdffile" width="100%" height="680" src="/ZZZ/provinceProductPdf/20170602.pdf">
后来看了别的网站可以显示pdf,原来是少了type=”application/pdf”
<embed id=
"pdffile" width=
"100%" height=
"680" src=
"/ZZZ/provinceProductPdf/20170602.pdf" type=
"application/pdf" >
这样就可以显示了
当初为了显示出来翻了百度也没找到,心好累啊!