1

我试图理解另一个 Stackoverflow 答案(跨域 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>

我的问题:

  1. http://target.domain.com是指
    嵌入 iframe 的域,对吗?不是 iframe 所在的域?
  2. 在这function resizeCrossDomainIframe(id, other_domain) {条线上,我不应该将“id”与 iframe 所在的域名互换idiframe“other_domain”与 iframe 所在的域名互换,对吧?它们只是我稍后在调用函数时指定的参数。

  3. onload我没有在标签中使用,而是iframe在 jQuery 中编写了等效的代码,它加载到嵌入 iframe 的页面上:

    $('#petition-embed').load(function() { resizeCrossDomainIframe('petition-embed','http://target.domain.com'); });

  4. 我在 return 周围添加了括号:

    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

这看起来对吗?

4

1 回答 1

2

我需要做类似的事情,发现这个例子看起来更简单:使用 postmessage 刷新 iframe 的父文档

这是我在 iframe 中得到的结果:

window.onload = function() {
  window.parent.postMessage(document.body.scrollHeight, 'http://targetdomain.com');
}

在接收父母中:

window.addEventListener('message', receiveMessage, false);

function receiveMessage(evt){
  if (evt.origin === 'http://sendingdomain.com') {
    console.log("got message: "+evt.data);
    //Set the height on your iframe here
  }
}
于 2014-01-24T18:46:31.630 回答