在iframe内的网页上加入代码
function frame_resize()
{
if(document.readyState=="complete")
{
if (typeof(parent.document.all['content']) != "undefined" && document.body.scrollHeight > 400)
{
setTimeout("parent.document.all['content'].style.pixelHeight=document.body.scrollHeight;",200);
}
}
}
document.onreadystatechange=frame_resizecontent为iframe的名字