以下方法适用于两个网页同源
如果两个网页不同源,就无法拿到对方的DOM
<iframe id="iframe" width="1200" src="" ></iframe>
<script type="text/javascript">
window.onload = function () {
document.getElementById("iframe").height=document.getElementById("iframe").contentWindow.document.body.scrollHeight;
}
</script>