JSP部分
<iframe id="frameRight" name="frameRight" src="" width="863px" height="520px" οnlοad="iFrameHeight();" frameborder="0" scrolling="no"></iframe>
JS部分
function iFrameHeight() {
var ifm = document.getElementById("frameRight");
if(ifm ==null){return;}
var subWeb = document.frames ? document.frames["frameRight"].document : ifm.contentDocument;
ifm.height=520;
if (ifm != null && subWeb != null) {
ifm.height = subWeb.body.scrollHeight;
}
}