我试图理解另一个 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>
我的问题:
- http://target.domain.com是指
嵌入 iframe 的域,对吗?不是 iframe 所在的域? 在这
function resizeCrossDomainIframe(id, other_domain) {
条线上,我不应该将“id”与 iframe 所在的域名互换id
,iframe
“other_domain”与 iframe 所在的域名互换,对吧?它们只是我稍后在调用函数时指定的参数。onload
我没有在标签中使用,而是iframe
在 jQuery 中编写了等效的代码,它加载到嵌入 iframe 的页面上:$('#petition-embed').load(function() { resizeCrossDomainIframe('petition-embed','http://target.domain.com'); });
我在 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
这看起来对吗?