게시판관련 질문좀 할게요 정보
게시판관련 질문좀 할게요본문
안녕하세요
http://leh8767.mireene.com/page/food.php
이 부분에 게시판을 달았는데요,
아이프레임을 이용해서 달았습니다.
그런데, 글을 읽을려고 가 보면
전체적으로 틀이 늘어나드라구요
제가 원하는건 게시판 목록 페이지 처럼
글을 클릭했을 때 지정된 크기 안에서 스크롤바가 생겼으면 해서요
전체적으로 틀이 늘어지는 것 말구요...
어, 그러니깐
만약 세로길이가 300 인데
글을 입력하면 세로길이 300 이 넘어가서 스크롤바가 생기게 되는데
이 때, 전체적인 창에 스크롤바가 생기는 것이 아니라
지정된 300 크기 안에서만 스크롤바가 생길 수 있게
지정된 크기안에서만 크기 변동가능한 게시판을 달고 싶습니다..
자세한 답변 알려주시면 정말 감사하겠습니다!!
부탁드립니다.
http://leh8767.mireene.com/page/food.php
이 부분에 게시판을 달았는데요,
아이프레임을 이용해서 달았습니다.
그런데, 글을 읽을려고 가 보면
전체적으로 틀이 늘어나드라구요
제가 원하는건 게시판 목록 페이지 처럼
글을 클릭했을 때 지정된 크기 안에서 스크롤바가 생겼으면 해서요
전체적으로 틀이 늘어지는 것 말구요...
어, 그러니깐
만약 세로길이가 300 인데
글을 입력하면 세로길이 300 이 넘어가서 스크롤바가 생기게 되는데
이 때, 전체적인 창에 스크롤바가 생기는 것이 아니라
지정된 300 크기 안에서만 스크롤바가 생길 수 있게
지정된 크기안에서만 크기 변동가능한 게시판을 달고 싶습니다..
자세한 답변 알려주시면 정말 감사하겠습니다!!
부탁드립니다.
댓글 전체
<script language="JavaScript">
<!--
function resizeFrame(iframeObj){
var innerBody = iframeObj.contentWindow.document.body;
var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
if (innerHeight > 100)
{
iframeObj.style.height = innerHeight;
}
this.scrollTo(1,0);
}
//-->
</script>
<iframe src="파일명" width="가로크기" height="10" scrolling="no" frameborder="no" align=left onload="resizeFrame(this);"></iframe>
이렇게 해보세요.
<!--
function resizeFrame(iframeObj){
var innerBody = iframeObj.contentWindow.document.body;
var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
if (innerHeight > 100)
{
iframeObj.style.height = innerHeight;
}
this.scrollTo(1,0);
}
//-->
</script>
<iframe src="파일명" width="가로크기" height="10" scrolling="no" frameborder="no" align=left onload="resizeFrame(this);"></iframe>
이렇게 해보세요.