如何从Iframe中禁用工具栏

时间:2017-06-19 07:41:03

标签: javascript jquery ruby-on-rails pdf iframe

我想在iframe中显示PDF文件,因此我为此用户pdf.js



<iframe src="https://mozilla.github.io/pdf.js/web/viewer.html" 
class="iframe-view" width="100%" height="300" allowfullscreen ></iframe>
&#13;
&#13;
&#13;

现在它对我来说很好。

但我想现在从Iframe中禁用工具栏。

我尝试在js

的帮助下删除toolbar div

但我没有使用此代码$(".toolbar")

获取此工具栏div

有谁知道如何禁用此功能?

谢谢。

1 个答案:

答案 0 :(得分:0)

如果您想操纵IFrame的内容,可以尝试使用:

$("#myiframe").contents().find(".toolbar");

但我不知道你是否可以使用这种方法隐藏收费栏。