묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
iframe resizeFrame 관련질문입니다.
2007.09.21 14:12
html 문서를 iframe에 링크시킬때는
function resizeFrame(subWin){
var guestDoc = subWin.contentWindow.document.body
var frameHeight = guestDoc.offsetHeight;
subWin.height = frameHeight;
}
라는 js파일과
<iframe allowTransparency="true" id="guest" name="guest" src="portfolio.htm"
frameborder="0" scrolling="no" style="width:850px;" onload="resizeFrame(this);">
하는 식으로 잘 사용했었는데
iframe안의 문서를 제로보드로 바꾸는 리사이즈가 안되네요. 뭐가 잘못된건지도 모르겠습니다.
게시판의 사이즈는 원래 불러오지 못하는건가요.
function resizeFrame(subWin){
var guestDoc = subWin.contentWindow.document.body
var frameHeight = guestDoc.offsetHeight;
subWin.height = frameHeight;
}
라는 js파일과
<iframe allowTransparency="true" id="guest" name="guest" src="portfolio.htm"
frameborder="0" scrolling="no" style="width:850px;" onload="resizeFrame(this);">
하는 식으로 잘 사용했었는데
iframe안의 문서를 제로보드로 바꾸는 리사이즈가 안되네요. 뭐가 잘못된건지도 모르겠습니다.
게시판의 사이즈는 원래 불러오지 못하는건가요.