嵌入 PDF 在 Android Chrome 中不起作用 - 不支持插件

发布于 2025-01-09 07:35:52 字数 310 浏览 0 评论 0原文

我想在我的网页上显示我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゝ偶尔ゞ 2025-01-16 07:35:52

您可以将 Google Drive PDF 查看器与对象数据一起使用

<object data="https://drive.google.com/viewerng/viewer?embedded=true&url=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">
<embed src="https://drive.google.com/viewerng/viewer?embedded=true&url=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'>
</object>


You can use Google Drive PDF viewer with Object data

ex.

<object data="https://drive.google.com/viewerng/viewer?embedded=true&url=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">
<embed src="https://drive.google.com/viewerng/viewer?embedded=true&url=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'>
</object>


淡看悲欢离合 2025-01-16 07:35:52
  1. PDF 必须下载到浏览设备,因此某些浏览器可以显示其 pdf 扩展名,而某些浏览器可能没有这样的 pdf 扩展名

  2. 用户可以设置自己的 PDF 首选项,例如下载后显示或不显示或使用不同的 PDF 扩展器。

  3. 嵌入不是提供 PDF 的首选方法,最首选的方法是带有 的文本或缩略图封面/图像图标单击下载整个文件这会减少服务器上的负载(降低亚马逊/图书网站的成本)在此处输入图像描述

  1. 第二好的 iFrame 位于页面右侧下方(多个意味着多次下载。)

在此处输入图像描述

  1. 最后一个嵌入(对象是一种要避免的方法,因为现在正在贬值/不是好)查看您在左上方对象中的嵌入
  1. 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.

  2. Users can set their own PDF preferences like display or not display after download or use a different PDF extender.

  3. 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) enter image description here

 

  1. 2nd best is one iFrame on a page Below on Right (more than one means multiple downloads.)

enter image description here

  1. Finally an Embed (Object is a method to be avoided as now depreciating / not good) See your Embed in an Object Above Left
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文