0

我想知道是否有某种方法可以制作它,以便如果 iFrame 中有一堆内容,它只会缩小文档本质上使其适合。使 iFrame 内的所有内容变小。

有什么想法我会怎么做?

脚本:

<script type="text/javascript">
function autoResize(id){
    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(id).height= (newheight) + "px";
    document.getElementById(id).width= (newwidth) + "px";
}
</script>

框架:

<iframe id="iframehtml" style="width:100%;height:100%;" onLoad="autoResize('iframe1');"></iframe>

顺便说一句,没有为 iFrame 设置 src 的原因是因为我在 JavaScript 中有它,所以当您单击一个按钮时,它将编辑 iFrame 的 html。

4

0 回答 0