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 中起作用。