如何让iframe的高度自适应父窗口的高度

给iframe添加属性onload="javascript:this.height=this.contentWindow.document.body.scrollHeight+30;"

如:

<Iframe src="<%= request.getContextPath() %>/listColumnAction.do" width="100%" style="_width: 100%;"
     height="100" scrolling="auto" frameborder="0" name="main" onload="javascript:this.height=this.contentWindow.document.body.scrollHeight+30;"></iframe>

你可能感兴趣的:(JavaScript,iframe)