아이프레임 자동으로 늘어나는 자바 스크립트
본문
<!--- 아이프레임 --->
<script language="JavaScript">
function reSize() {
try {
var objBody = auto_iframe.document.body;
var objFrame = document.all["auto_iframe"];
ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
objFrame.style.height = ifrmHeight;
}
catch(e) {}
}
function init_iframe() {
reSize();
setTimeout('init_iframe()',1)
}
init_iframe();
</script>
----위에 소스 헤드 부분에 복사해서 넣으시구요.
아래처럼 아이플래임 들어가는곳에 복사에서 넣어주세요.
<iframe src=" 불러올 주소 " frameborder="0" width="100%" allowTransparency="true"
name="auto_iframe" id="auto_iframe" marginwidth="0" marginheight="0" scrolling="no"
allowtransparency="true"></iframe>
출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=143
<script language="JavaScript">
function reSize() {
try {
var objBody = auto_iframe.document.body;
var objFrame = document.all["auto_iframe"];
ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
objFrame.style.height = ifrmHeight;
}
catch(e) {}
}
function init_iframe() {
reSize();
setTimeout('init_iframe()',1)
}
init_iframe();
</script>
----위에 소스 헤드 부분에 복사해서 넣으시구요.
아래처럼 아이플래임 들어가는곳에 복사에서 넣어주세요.
<iframe src=" 불러올 주소 " frameborder="0" width="100%" allowTransparency="true"
name="auto_iframe" id="auto_iframe" marginwidth="0" marginheight="0" scrolling="no"
allowtransparency="true"></iframe>
출처 : http://www.aircon1004.com/data/bbs/board.php?bo_table=pds1&wr_id=143
관련링크
댓글목록
등록된 댓글이 없습니다.