게시판에 한번들어갔다가오면 안줄어들어여 정보
게시판에 한번들어갔다가오면 안줄어들어여본문
댓글 전체
아이프레임을 쓰셧나봐요?
옙 아이프레임으로 한거예요.
<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>
이거로 작업했어요.
<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>
이거로 작업했어요.