1

我无法根据页面内容调整自动高度。

代码 -

<iframe width="100%" id="myFrame" src="http://www.learnphp.in" scrolling="no">
</iframe>

我更喜欢让 iframe 根据内容自动调整高度而不使用滚动条?但这段代码不起作用。请建议我如何在不使用滚动的情况下获取完整数据?

4

1 回答 1

0

尝试这个

<script>   
function autoResize(myiframe){
    var newheight;
    var newwidth;

    if(document.getElementById){
        newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
        newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
    }

    document.getElementById(myiframe).height= (newheight) + "px";
    document.getElementById(myiframe).width= (newwidth) + "px";
}
</script>

<body>  
 <div align="center" style="padding-left:50px">
      <iframe id="myiframe" src="helpdesk/index.php" width="800"></iframe>
 </div>
</body>
于 2013-10-19T11:27:47.093 回答