我终于搞定了 iframe 的跨域功能。我现在遇到的问题是第一页很长。当您单击 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');">
有没有人有任何想法如何修改它,如果他们能展示我必须修改的内容?
谢谢你。