Posted in Javascript onOctober 05, 2006
通过ifame指向的页面高度调整iframe的高度
1.htm的代码:
<iframe src=2.htm id=ifrm></iframe>
2.htm的代码:
<script>
function resize()
{parent.document.all.ifrm.height=document.body.scrollHeight;
parent.document.all.ifrm.width=document.body.scrollWidth;
}
</script>
<body onload="resize()">
</body>
通过ifame指向的页面高度调整iframe的高度
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@