Apr062009
父框架的宽度和高度自动适应其所包含页面的宽度和高度
< iframe width=750 height=500 src=”http://blog.cnbytes.net/a.html” frameborder=no scrolling=no border=0 marginwidth=0 marginheight=0 id=”in“>
在a.html中:
< script language=”Javascript” >
function resize()
{
parent.document.getElementById(“in“).style.height=document.body.scrollHeight;
parent.document.getElementById(“in“).style.width=document.body.scrollWidth;
}
< / script >
< body bgcolor=#ffffff topmargin=0 marginheight=0 leftmargin=0 marginwidth=0 onload=resize(); >
即可实现父框架的宽度和高度自动适应其所包含页面的宽度和高度。