嵌入 PDF 在 Android Chrome 中不起作用 - 不支持插件
我想在我的网页上显示我的 PDF 文件。
这是我的代码,在我的计算机浏览器中完美运行,但 id 未在移动设备的 chrome 中显示,显示消息
不支持插件
这是我的代码
<embed src="http://health.ntuh.gov.tw/health/NTUH_e_Net/NTUH_e_Net_no91/%E7%99%8C%E7%97%87%E7%AF%A9%E6%AA%A2.pdf" type="application/pdf" />
I want to display my PDF files on my web page.
This is my code which works perfectly my computers browser but id does not display in mobile's chrome shows the message
plugin not supported
this is my code
<embed src="http://health.ntuh.gov.tw/health/NTUH_e_Net/NTUH_e_Net_no91/%E7%99%8C%E7%97%87%E7%AF%A9%E6%AA%A2.pdf" type="application/pdf" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 Google Drive PDF 查看器与对象数据一起使用
。
You can use Google Drive PDF viewer with Object data
ex.
PDF 必须下载到浏览设备,因此某些浏览器可以显示其 pdf 扩展名,而某些浏览器可能没有这样的 pdf 扩展名。
用户可以设置自己的 PDF 首选项,例如下载后显示或不显示或使用不同的 PDF 扩展器。
嵌入不是提供 PDF 的首选方法,最首选的方法是带有
的文本或缩略图封面/图像图标单击下载整个文件
这会减少服务器上的负载(降低亚马逊/图书网站的成本)PDF must be a download to browsing device So Some browsers can display with their pdf extension and some may not have such a pdf extender.
Users can set their own PDF preferences like display or not display after download or use a different PDF extender.
Embed is not the preferred method for serving a PDF, the most preferred method is text or a thumbnail cover / image icon with
<a href=file.pdf download> click to download whole file</a>
this reduces the load on the server (reduced cost like Amazon / book sites)