如何在 iframe 中查看 Google Drive pdf 链接

2022-01-10 00:00:00 pdf google-drive-api iframe html

我需要查看嵌入 google drive 链接的 pdf 文件并在 iframe 中查看链接.

I need to view pdf file embed with google drive link and view link in iframe.

我尝试了以下代码:

<iframe src="https://drive.google.com/viewerng/viewer?url=https://library.osu.edu/assets/Documents/SEL/QuickConvertWordPDF.pdf" width="400px" height="300px"  />

提前谢谢..

推荐答案

试试这个..

<iframe src="https://drive.google.com/viewerng/viewer?
url=https://library.osu.edu/assets/Documents/SEL/QuickConvertWordPDF.pdf?
pid=explorer&efh=false&a=v&chrome=false&embedded=true" width="400px" height="300px"  />

相关文章