그누보드 아이프레임 질문 정보
그누보드 아이프레임 질문본문
댓글 전체
그누보드 플러그인의 클럽에서 원하시는 iframe을 조절하는 js소스를 사용합니다.
필요한 부분만 복사해드립니다.
iframe의 name은 frame명과 동일해야합니다.
<script language="JavaScript" type="text/JavaScript">
function resizeIFrame()
{
var iframeWin = document.frames['CLUB_BODY'];
var scrollbarWidth = 4;
var iframeWinBody = iframeWin.document.body;
var diffHeight = iframeWinBody.scrollHeight - document.all.CLUB_BODY.style.pixelHeight;
document.all.CLUB_BODY.style.pixelHeight = document.all.CLUB_BODY.style.pixelHeight + diffHeight + scrollbarWidth;
}
</script>
<iframe width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" id="ifrm" src="cb_main.php?cb_id=cb_dw&bo_table=" name="CLUB_BODY" onload="resizeIFrame();location='#'" onChange="resizeIFrame();"></iframe>
필요한 부분만 복사해드립니다.
iframe의 name은 frame명과 동일해야합니다.
<script language="JavaScript" type="text/JavaScript">
function resizeIFrame()
{
var iframeWin = document.frames['CLUB_BODY'];
var scrollbarWidth = 4;
var iframeWinBody = iframeWin.document.body;
var diffHeight = iframeWinBody.scrollHeight - document.all.CLUB_BODY.style.pixelHeight;
document.all.CLUB_BODY.style.pixelHeight = document.all.CLUB_BODY.style.pixelHeight + diffHeight + scrollbarWidth;
}
</script>
<iframe width="100%" height="100%" frameborder="0" marginheight="0" marginwidth="0" scrolling="no" id="ifrm" src="cb_main.php?cb_id=cb_dw&bo_table=" name="CLUB_BODY" onload="resizeIFrame();location='#'" onChange="resizeIFrame();"></iframe>