gpt4 book ai didi

javascript - 显示文档的全长以嵌入谷歌文档

转载 作者:行者123 更新时间:2023-11-30 20:38:26 24 4
gpt4 key购买 nike

如何在 iframe 上显示没有滚动条的嵌入式 google 文档的完整长度?

<html>
<style>
body { margin: 0; padding: 0; o}
iframe { margin-left: 2vw; margin-top: 2vh; height: 100%; width: 90vw; }

</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<body>

<iframe srcdoc="" frameborder="0" scrolling="no" height="100%"></iframe>

<script>
$(function() {
$.get("https://docs.google.com/document/d/17OkIgtNdV1flno_783tJm2xWU0NBh7uEmZ5wEXP2E9g/pub?embedded=true", function(html) {
var contents = $("iframe").contents();

contents.find("html").html(html);

setTimeout(function() {
contents.find('a[href^="http://"]').attr("target", "_blank");
contents.find('a[href^="https://"]').attr("target", "_blank");
}, 1000); // Actually not sure if timeout is required here...
});
});
</script>
</body>
</html>

显示可能显示一页半的文本然后停止。

最佳答案

Google 文档目前很乐意通过 CORS 请求提供已发布的文档。

这意味着您不需要 iframe 来嵌入您的文档。您可以改为使用 XMLHttpRequestGET 您的文档并将响应放在 divinnerHtml 中。

关于javascript - 显示文档的全长以嵌入谷歌文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49566806/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com