사용자 도구

사이트 도구


javascript:iframe

JavaScript iframe제어

iframe내부에서 자신의 높이를 스스로 변경하기

  • document.domain 등의 설정으로 부모에 접근 가능하다고 간주한다.
var iframe = window.parent.document.getElementById("iframeID값");
if (!iframe) {
	return;
}
 
var bodyHeight = $(iframe.contentDocument.documentElement).find("body").height(); // body의 높이를 알아내서
iframe.height = (bodyHeight + 20) + "px"; // iframe의 height에 적용한다. 약간 여유를 줌.
javascript/iframe.txt · 마지막으로 수정됨: 2012/11/16 19:24 저자 kwon37xi