iframe適応高さ


jspスクリプト
function SetCwinHeight() {
	var iframeid = document.getElementById("iframeid"); //iframe id
	if (document.getElementById) {
		if (iframeid) {
			if (iframeid.contentDocument && iframeid.contentDocument.body.offsetHeight) {
				iframeid.height = iframeid.contentDocument.body.offsetHeight;
			} else if (iframeid.Document && iframeid.Document.body.scrollHeight) {
				iframeid.height = iframeid.Document.body.scrollHeight;
			}
		}
	}
}
window.setInterval("SetCwinHeight()", 200);
htmlページ
<iframe id="iframeid" onload="Javascript:SetCwinHeight()"></iframe>