인생은 언제나 큰 염료통이다. 흰 천이 나가면 검은 천이 나온다.
contentWindow는 다양한 브라우저와 호환되며 자식 창의 창 개체를 얻을 수 있습니다.
contentDocument Firefox 지원, > 자식 창의 문서 개체를 얻을 수 있습니다.
하위 iframe에서 상위 iframe 또는 손자 iframe 높이를 설정합니다.
function showIframeH(){
var parentWin = parent.document.getElementById("test");
if(!parentWin) return false;
var sub = parentWin.contentWindow.document.getElementById("test2");
if (!sub ) return false;
var thirdHeight = sub.contentWindow.document.body.offsetHeight; //세 번째 레이어 본문 객체
sub.height = thirdHeight; //두 번째 레이어 iframe의 높이 설정
var secondHeight = x.contentWindow.document.body.offsetHeight; //두 번째 레이어 본문 객체
x.height = secondHeight; //첫 번째 레이어의 높이 설정
//alert(secondHeight);
/ /alert('body: ' x.contentDocument.body.offsetHeight ' div:' thirdHeight);
}