我正在尝试理解另一个Stackoverflow答案(cross-domain iframe resizer?),该答案旨在解决如何根据其高度调整iframe
(托管在与其嵌入的域分开的域上)的大小。想知道是否有人可以回答我的问题。
解决方案:
I帧:
<!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>
我的问题:
在function resizeCrossDomainIframe(id, other_domain) {
行中,我不应该将“id”与id
的{{1}}和“other_domain”与iframe的域名互换托管,对吗?它们只是我稍后在调用函数时指定的参数。
我没有在iframe
标记中使用onload
,而是在jQuery中编写了等效内容,它在嵌入iframe的页面上加载:
iframe
我在return:
附近添加了括号 $('#petition-embed').load(function() {
resizeCrossDomainIframe('petition-embed','http://target.domain.com');
});
看起来不错吗?
答案 0 :(得分:2)
我需要做类似的事情,并发现这个示例看起来更简单:using postmessage to refresh iframe's parent document
以下是我在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
}
}