0

我正在使用 Google Document Viewer 来显示 pdf 文件。我已经给出了要显示的 pdf 文件的链接,它在 Firefox 浏览器中正确显示,并且 chrome 允许我下载该文件而不显示。

我不想在任何浏览器中下载它,只是查看文档。

是否可以隐藏包含缩放、下载和打印选项的查看器工具栏?

当我单击查看文档时,它将带我到 show.htm,其中谷歌文档查看器将显示 pdf。

<%= link_to "View Document", course_path(:course_id => @course.id), :class =>"view_btn" %>    

显示.html.erb

<iframe src="http://docs.google.com/gview?url=http://localhost:3000/<%= @document.document.url(:original) %>&embedded=true" style=" height: 1039px; width: 1039px; margin-left: 5px;" frameborder="0"></iframe>
4

1 回答 1

0

您可以尝试使用 CSS 隐藏工具栏。只需使用“z-index”和“position”(相对,绝对)在其上放​​置一些 div。

于 2013-12-25T09:55:53.343 回答