gpt4 book ai didi

javascript - iFrame 随内容扩展但不收缩

转载 作者:行者123 更新时间:2023-11-28 18:34:34 25 4
gpt4 key购买 nike

我有一个跨域 iFrame。实际的 iFrame 工作正常并以 100% 的高度显示页面。

我的问题是第一页的高度约为 1200 像素,然后如果您单击 iframe 中的链接,而下一页的高度为 800 像素,则底部会出现 400 像素的空白区域。

因此 iframe 会变大以适应内容,但不会缩小。下面是我的代码:

页面中要被 iframed 的代码:

<!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>

有谁知道如何修改 javascript 使其也缩小?

谢谢。

最佳答案

在您的脚本中,other_domain 始终等于“http://example.com”。因此,如果您单击“http://example.com/somePage.html”,您的函数将始终在调整 iFrame 大小之前返回。而不是等于,你应该使用

if (event.origin.lastIndexOf(other_domain, 0) !== 0) return;

关于javascript - iFrame 随内容扩展但不收缩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13183774/

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