gpt4 book ai didi

javascript - 自动调整 iFrame 大小

转载 作者:太空宇宙 更新时间:2023-11-03 18:57:06 25 4
gpt4 key购买 nike

终于搞定了iframe的跨域功能。我现在的问题是第一页很长。当您在 iframe 中单击指向较小页面的链接时,iframe 不会自动调整大小,并且您会在底部出现一个很大的空隙,而前一个页面高度也随之消失。

我使用的代码如下:

外域代码:

<!DOCTYPE html>
<head>
</head>
<body onload="parent.postMessage(document.body.scrollHeight, 'http://target.domain.com');">
<h3>Got post?</h3>
<p>Lots of stuff here which will be inside the iframe.</p>
</body>
</html>

在要显示 iframe 的主域上的代码:

<script type="text/javascript">
function resizeCrossDomainIframe(id, other_domain) {
var iframe = document.getElementById(id);
window.addEventListener('message', function(event) {
if (event.origin !== other_domain) return; // only accept messages from the specified domain
if (isNaN(event.data)) return; // only accept something which can be parsed as a number
var height = parseInt(event.data) + 32; // add some extra height to avoid scrollbar
iframe.height = height + "px";
}, false);
}
</script>

<iframe src='http://example.com/page_containing_iframe.html' id="my_iframe" onload="resizeCrossDomainIframe('my_iframe', 'http://example.com');">

有没有人知道如何修改它,如果他们能展示我必须修改的内容?

谢谢。

最佳答案

首先,您必须问问自己为什么要使用 iframe。如果您可以用另一种方式(AJAX!)完成此操作,那可能是最好的。但是,我看到这个成功的唯一方法是:

__________________
|A |
| ____________ |
| |B | |
| | | |
| | |C| | |
| |___________| |
|_________________|

假设 A 的网址为 http://foo.com B 的网址为 http://bar.com . B中没有脚本可以影响A。A中没有脚本可以影响B中的页面。这是浏览器安全协议(protocol)。

A唯一能对B做的就是影响src有效改变iframe中的页面。我们可以利用这一点。

在 B 中创建一个新的 iframe (C)。C 需要来自与 A 相同的服务器,所以让我们给它一个 url http://foo.com/iframeheight.html .将其放在 iframe B 的底部(在 iframe 页面上的 </body> 之前):

ifrm = document.createElement("IFRAME"); 
ifrm.setAttribute("src", "http://foo.com/iframeheight.html#" + document.documentElement.scrollHeight);
ifrm.style.width = 0+"px";
ifrm.style.height = 0+"px";
document.body.appendChild(ifrm);

因为A和C有相同的URL,浏览器会让他们互相影响。 http://foo.com/iframeheight.html应该包含一个函数来告诉 A 调整 B 的大小:

window.top.getElementById('my_iframe').height = window.location.hash.substring(1);

关于javascript - 自动调整 iFrame 大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13179046/

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