我想知道是否有某种方式使它成为如果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:
<iframe id="iframehtml" style="width:100%;height:100%;" onLoad="autoResize('iframe1');"></iframe>
顺便说一下,没有为iFrame设置src的原因是因为我在JavaScript中有它,所以当你点击一个按钮时它会编辑iFrame的html。