하나의 계정에 홈페이지가 3개일 경우...
페이지 정보
본문
댓글목록
연후아빠님의 댓글
연후아빠쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일
아이프레임 자동 늘림을 사용해 보세요..스크롤바 생기지 않습니다~!^^
<script language="JavaScript">
<!--
function calcHeight()
{
//find the height of the internal page
var the_height=
document.getElementById('the_iframe').contentWindow.
document.body.scrollHeight;
//change the height of the iframe
document.getElementById('the_iframe').height=
the_height;
}
//-->
</script>
위 스크립트를 넣어주시고
<iframe width=100% id="the_iframe" onLoad="calcHeight();" src="불러올 내용주소" scrolling="NO" frameborder="0" height="0"></iframe>
이런식으로 불러오면 됩니다.
소피님의 댓글
소피쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일
<script language="JavaScript">
//<!--
function calcHeight()
{
//find the height of the internal page
var the_height=
document.getElementById('the_iframe').contentWindow.
document.body.scrollHeight;
//change the height of the iframe
document.getElementById('the_iframe').height=
the_height;
}
//-->
</script>
요렇게 고쳐서 사용하세요.