댓글만 보는 부분(기존페이지에 삽입시) 문의드립니다. 정보
댓글만 보는 부분(기존페이지에 삽입시) 문의드립니다.본문
<? if($댓글이있으면...!= ""){
include_once "{$g4[path]}/bbs/board.php?bo_table=댓글만보여줄페이지&wr_id=댓글만달린게시물의번호";
}else{}
?>
의 형식으로 iframe으로 아래소스 이건 사용해 봤는데 자동크기조절이 됬다 안됬다 하더군요..
아래소스 ..(자바)
// 댓글 사이즈에 맞게 조정하기
function resizeHeight(id) {
var the_height = document.getElementById(id).contentWindow.document.body.scrollHeight;
document.getElementById(id).height = the_height + 30;
}
현재. 댓글만 달린형태의 게시판을 만들어 둔 상태구요(스킨의view.php에서 내용 제목같은거 다 빼고
댓글보는부분만 남겨뒀구요)
이 스킨을 제가 만드는 홈페이지에 적용해서 위의 자바스크립트로 iframe을 쓰면 적용이 됬다 안됬다 하더군요 ie 6에서는 거의 정상삭동 ie7에선 됬다 안됬다 ㅡㅡ
방법이 있을까요?
include_once "{$g4[path]}/bbs/board.php?bo_table=댓글만보여줄페이지&wr_id=댓글만달린게시물의번호";
}else{}
?>
의 형식으로 iframe으로 아래소스 이건 사용해 봤는데 자동크기조절이 됬다 안됬다 하더군요..
아래소스 ..(자바)
// 댓글 사이즈에 맞게 조정하기
function resizeHeight(id) {
var the_height = document.getElementById(id).contentWindow.document.body.scrollHeight;
document.getElementById(id).height = the_height + 30;
}
현재. 댓글만 달린형태의 게시판을 만들어 둔 상태구요(스킨의view.php에서 내용 제목같은거 다 빼고
댓글보는부분만 남겨뒀구요)
이 스킨을 제가 만드는 홈페이지에 적용해서 위의 자바스크립트로 iframe을 쓰면 적용이 됬다 안됬다 하더군요 ie 6에서는 거의 정상삭동 ie7에선 됬다 안됬다 ㅡㅡ
방법이 있을까요?
댓글 전체
간단하게 말하면 iframe으로 불러오는데 자동으로 크기조절이 되었으면 합니다.
위의 소스가 적용이 안되니 다른 소스 좀 제공해 주셔요~
위의 소스가 적용이 안되니 다른 소스 좀 제공해 주셔요~
function reSize() {
try {
var objBody1 = compar_1.document.body;
var objFrame1 = document.all["compar_1"];
ifrmHeight1 = objBody1.scrollHeight + (objBody1.offsetHeight - objBody1.clientHeight);
objFrame1.style.height = ifrmHeight1;
}catch(e) {}
}
function init_iframe() {
reSize();
setTimeout('init_iframe()',1)
}
init_iframe();
<iframe width="520" scrolling='no' name='compar_1' id='compar_1' src='#' marginwidth="10" frameborder="0" ></iframe>
php 스쿨에서 검색으로 해결했어요 ^^
try {
var objBody1 = compar_1.document.body;
var objFrame1 = document.all["compar_1"];
ifrmHeight1 = objBody1.scrollHeight + (objBody1.offsetHeight - objBody1.clientHeight);
objFrame1.style.height = ifrmHeight1;
}catch(e) {}
}
function init_iframe() {
reSize();
setTimeout('init_iframe()',1)
}
init_iframe();
<iframe width="520" scrolling='no' name='compar_1' id='compar_1' src='#' marginwidth="10" frameborder="0" ></iframe>
php 스쿨에서 검색으로 해결했어요 ^^