根据内容自动调整iframe高度 有时为了方便使用Iframe,但被潜入的页面长度不是固定的,显示滚动条不仅影响美观还对用户操作带来不便,自动调整高度可以解决这个问题。^_^
<table width="500" border="0" cellpadding="0" cellspacing="0" align=center>
<tr>
<td align="right">
<script>
//自动调整iframe高度
function autoResize()
{
try
{
document.all["LinkIFrame"].style.height=LinkIFrame.document.body.scrollHeight
}
catch(e)
{}
}
</script>
</td>
</tr>
</table>