gpt4 book ai didi

javascript - 跨域 iframe 调整大小?

转载 作者:行者123 更新时间:2023-12-03 09:51:52 25 4
gpt4 key购买 nike

我正在寻找一个很好的跨域 iframe 大小调整脚本,它可以根据其内容调整其高度。我也可以访问 iframe 源的 html/css。外面有吗?

最佳答案

如果您的用户使用现代浏览器,您可以使用 postMessage in HTML5 轻松解决此问题。 .这是一个运行良好的快速解决方案:

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>

关于javascript - 跨域 iframe 调整大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5606920/

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