1
    function iframeLoaded() {
        var iFrameID = document.getElementById('iframe_login');
        if (iFrameID) {
            // here you can meke the height, I delete it first, then I make it again
            iFrameID.height = "";
            iFrameID.height = iFrameID.contentWindow.document.body.scrollHeight + "px";
        }
    }

该脚本在 Mozilla firefox 中不起作用,但在 chrome 中起作用。

4

1 回答 1

2

使用 jquery,http://api.jquery.com/height/

 function iframeLoaded() {
        var iFrameID = $('#iframe_login');
        if (iFrameID) {
            iFrameID.height(...)
        }
    }
于 2013-04-17T07:39:13.383 回答