아이프레임 자동으로 늘어나는 자바 스크립트 입니다.

· 10년 전 · 244

<script Language='javascript'>
var ifrmHeight;
var objFrame;
var str;
var cstr;

function init() {
                try{
                        objFrame = document.all["ifrm"];
                        str = window.clipboardData.getData("Text");
                        cstr = str.split("|");
                        ifrmHeight= eval(cstr[1]);       
        }catch(e){
                }
}

function reSize() {
                try{                       
                        if (ifrmHeight > 240) {
                                        objFrame.style.height = ifrmHeight;
                        }else{
                                        objFrame.style.height = 240;
                        }                       
        }catch(e){
                }
}

function init_iframe() {       
        reSize();       
        setTimeout("init_iframe()",100);
}

init_iframe();
</script>

<script language="javascript">
window.clipboardData.setData('Text', document.body.scrollWidth+"|"+document.body.scrollHeight);
 </script>

|
댓글을 작성하시려면 로그인이 필요합니다. 로그인

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
10년 전 조회 228
10년 전 조회 235
10년 전 조회 280
10년 전 조회 196
10년 전 조회 215
10년 전 조회 380
10년 전 조회 227
10년 전 조회 277
10년 전 조회 257
10년 전 조회 294
10년 전 조회 405
10년 전 조회 279
10년 전 조회 245
10년 전 조회 265
10년 전 조회 373
10년 전 조회 283
10년 전 조회 236
10년 전 조회 238
10년 전 조회 247
10년 전 조회 200
10년 전 조회 203
10년 전 조회 380
10년 전 조회 446
10년 전 조회 233
10년 전 조회 229
🐛 버그신고