父窗口用一个<td id='xxx'>包含<iframe height='100%'>iframe里面,先判断parent.document.all.xxx是否为空,不为空
则让parent.document.all.xxx.height=document.body.scrollHeight示例: var fited=false
function startFit(){
if (fited==false){
if (parent.document.all.mainTd) {
parent.document.all.mainTd.height=document.body.scrollHeight+4
document.body.bgColor=parent.document.all.mainTd.bgColor
fited=true;
} else {
setTimeout("startFit()",50)
}
}
}
window.onload=startFit;
setTimeout("startFit()",50)