window.onload=ResizeWindow;
function ResizeWindow()
{
var tables=document.getElementsByTagName('table')
tables[tables.length-1].scrollIntoView(false);
var scrollTop=document.documentElement.scrollTop;
if(scrollTop==0)
{
return;
}
else
{
var height=document.documentElement.currentStyle.height;
height=parseInt(height)+scrollTop+20;
if(height>800)
{
return;
}
else
{
window.external.dialogHeight=height+"px";
}
}
}
function ResizeWindow()
{
var tables=document.getElementsByTagName('table')
tables[tables.length-1].scrollIntoView(false);
var scrollTop=document.documentElement.scrollTop;
if(scrollTop==0)
{
return;
}
else
{
var height=document.documentElement.currentStyle.height;
height=parseInt(height)+scrollTop+20;
if(height>800)
{
return;
}
else
{
window.external.dialogHeight=height+"px";
}
}
}
以上代码在模态窗口IE6.0中调试通过。因为firefox好象不支持模态窗口,所以就没必要在firefox下测试了。以上代码仅在模态窗口中适用。