87,996
社区成员




function getHeight(ifr){
var iframeHeight = ifr.contentWindow.document.body.scrollHeight + 30 + "px";
document.getElementById("homeBody").style.height = iframeHeight;
}
<div style="height:600px;width:100%;" id="homeBody">
<iframe name="homeIframe" width="100%" height="100%" src="" onload="getHeight(this);"></iframe>
</div>
<script>
function getHeight(ifr){
var iframeHeight = ifr.document.body.scrollHeight + 30 + "px";
document.getElementById("homeBody").style.height = iframeHeight;
}
</script>