要使iframe的高度根据子页面的高度自动变化,在对象加载完后设置iframe的高度为子页面的滚动高度
代码:<iframe id="frame1" name="frame1" src="div2.jsp" width="100%" frameborder="0" scrolling="no" οnlοad="setAutoHeight('frame1','frame1');"></iframe>
<script type="text/javascript">
function setAutoHeight(id,name){
document.getElementById(id).style.height=document.frames[name].document.body.scrollHeight;
}
</script>