http://community.csdn.net/Expert/FAQ/FAQ_Index.asp?id=204846

解决方案 »

  1.   

    TO 梅花雪:
    我已经搜索并看过了你在
    http://community.csdn.net/Expert/TopicView3.asp?id=3560489
    里的回复。
    但是我照你这样做并没有解决掉问题。
    scrollheight还是比较大。
    当然页面并没有问题。
    不知道是何故。
      

  2.   

    <script  language=javascript>  
    var iframe = parent.document.getElementById("test");
    iframe.height = 10;
    alert(iframe.height);
    var sHeight = iframe.document.body.scrollHeight;
    iframe.height = sHeight
    alert(iframe.height);
    </script>  前一次是10
    后一次是867
    窗口最小化以后大概实际高度只有100多点