谷歌文档阅读器:删除“在新窗口中打开”选项

发布于 2024-12-03 07:24:01 字数 179 浏览 2 评论 0 原文

有没有什么方法可以通过嵌入代码(我们为 嵌入文档)或 javascript/jquery?

Is there any way of removing or disabling the 'open in new window' icon of google doc reader( when used in embedded mode interface) through the embedded code(which we write for embedding documents) or javascript/jquery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

神爱温柔 2024-12-10 07:24:01

不知道有没有标准的方法。如果你真的想这样做,那么你可以尝试这样的事情。

<html>
    <body>
        <div style='position:relative;'>
            <div style='background-color:White;top:0px; height: 47px; position: absolute; left:0px; width: 100%;'></div>
            <div style='background-color:LightGray;top:47px; height: 5px; position: absolute; left:0px; width: 100%;'></div>
            <iframe src='http://docs.google.com/viewer?url=http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf&embedded=true' width='100%' height='100%' style='border: none;'/>
        </div>
    </body>
</html>

I don't know if there is any standard method. If you really want to do it, then you can try something like this.

<html>
    <body>
        <div style='position:relative;'>
            <div style='background-color:White;top:0px; height: 47px; position: absolute; left:0px; width: 100%;'></div>
            <div style='background-color:LightGray;top:47px; height: 5px; position: absolute; left:0px; width: 100%;'></div>
            <iframe src='http://docs.google.com/viewer?url=http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf&embedded=true' width='100%' height='100%' style='border: none;'/>
        </div>
    </body>
</html>
酷到爆炸 2024-12-10 07:24:01

不,据我了解,嵌入代码在来自另一个域(Google)的 iFrame 中运行,因此您无法使用脚本来更改其内容。

也许,请尝试添加 &rm=minimal 到嵌入文档的 url。

嵌入不带标题和标题的可编辑 Google 文档电子表格工具栏

No, as I understand the embedded code runs in an iFrame from another domain (Google), so you cannot use script to change the contents of that.

Perhaps, try adding &rm=minimal to the url of your embedded document.

Embed editable Google Docs spreadsheet without header & toolbar

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文