iframe的用法

来源:百度知道 编辑:UC知道 时间:2024/06/03 04:40:38
我放了个页面到iframe里面 怎么让页面的大小自动调整到框架的大小

<script language="JavaScript" type="text/JavaScript">
<!--
function SetCwinHeight()
{
var cwin=document.getElementById("cwin");
if (document.getElementById){
if (cwin && !window.opera){
if (cwin.contentDocument && cwin.contentDocument.body.offsetHeight)
cwin.height = cwin.contentDocument.body.offsetHeight;
else if(cwin.Document && cwin.Document.body.scrollHeight)
cwin.height = cwin.Document.body.scrollHeight;
}
}
}
</script>

<IFRAME name="cwin" border=0 marginWidth=0 marginHeight=0 src="tt1.php" frameBorder=no width=570 scrolling=no height=558 onload="Javascript:SetCwinHeight()"></IFRAME>