让控件填满整个页面
一般用于左侧的Frame,比如左侧放了一个树控件。用<body onload="FillPage('FlyTreeView1')" scroll=no>调用即可。
<script language="javascript" type="text/javascript">
//将ctlid控件填充满当前的页面,多用于frame中
function FillPage(ctlid)
{
var obj=document.getElementById(ctlid);
obj.style.width =document.documentElement.scrollWidth;
obj.style.height =document.documentElement.scrollHeight;
}
</script>
<script language="javascript" type="text/javascript">
//将ctlid控件填充满当前的页面,多用于frame中
function FillPage(ctlid)
{
var obj=document.getElementById(ctlid);
obj.style.width =document.documentElement.scrollWidth;
obj.style.height =document.documentElement.scrollHeight;
}
</script>