跨域 iframe 调整器?

IT技术 javascript iframe iframe-resizer
2021-02-04 01:40:15

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

6个回答

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

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>
它对我有用;唯一的缺点是远程 iFramed 站点也需要编辑,如果不可编辑,这将不起作用
2021-03-21 01:40:15
在 Chrome(版本 56.0.2924.87)中试过这个没有成功。不要出现任何错误,但也不会执行调整大小。
2021-03-26 01:40:15

未能找到处理所有不同用例的解决方案,我最终编写了一个简单的 js lib,它支持宽度和高度,在一页上调整内容大小和多个 iframe。

https://github.com/davidjbradshaw/iframe-resizer

这个库非常令人印象深刻,似乎解决了我在其他解决方案中遇到的所有其他问题。感谢您的工作。
2021-03-21 01:40:15

EasyXDM 可以做到这一点:) 这篇博文解释了它的要点

我只是看了一眼,这似乎超出了我的专业知识。
2021-03-15 01:40:15
有关解释,请参阅easyxdm.net/wp/2010/03/17/resize-iframe-based-on-content - 确实没有更简单的方法。
2021-03-18 01:40:15

此页面上的第一个脚本 - 在 HTML5 中使用 postMessage 的脚本 - 也适用于移动设备上的 iframe - 通过将 iframe 调整为内容 - 例如联合跨域 - 您可以轻松地在 iphone 或 android 中滚动,但方式并非如此否则可能使用 iframe

经过一些研究,我最终使用了包含在jQuery 插件中的html5 消息传递机制,这使其与使用各种方法的旧浏览器兼容(本线程中描述了其中一些)。

最终的解决方案非常简单。

在主机(父)页面上:

// executes when a message is received from the iframe, to adjust 
// the iframe's height
    $.receiveMessage(
        function( event ){
            $( 'my_iframe' ).css({
                height: event.data
            });
    });

// Please note this function could also verify event.origin and other security-related checks.

在 iframe 页面上:

$(function(){

    // Sends a message to the parent window to tell it the height of the 
    // iframe's body

    var target = parent.postMessage ? parent : (parent.document.postMessage ? parent.document : undefined);

    $.postMessage(
        $('body').outerHeight( true ) + 'px',
        '*',
        target
    );

});

我已经在 XP 和 W7 上的 Chrome 13+、Firefox 3.6+、IE7、8 和 9、OSX 和 W7 上的 safari 上测试过这个。;)