s

textarea 자동 늘려주기 2

<script type="text/javascript" language="JavaScript">
<!--
function countLineBreaks (string) {
    var re = /\r\n|\r|\n/g;
    var n = 0;
    while(re.exec(string)){
        n++;
    }
    return n;
}
function add_rows(){

    var oText = document.getElementById('sc_content');  //textarea id
    if(document.all) {    // IE
        while (oText.scrollHeight > oText.clientHeight){
            oText.rows++;
            oText.scrollTop = 0;
        }
        while(oText.scrollHeight < oText.clientHeight && oText.rows != 4){ // 기본 rows
            oText.rows--;
            oText.scrollTop = 0;
        }
    }else if(oText.rows) {    // IE 외
        var lineBreaks = countLineBreaks(oText.value);
        var rows = parseInt(oText.rows);
        if(lineBreaks > rows){
            oText.rows = ++rows;
        }else if(lineBreaks < rows && oText.rows != 4){  // 기본 rows
            oText.rows = --rows;
        }else{
            while (oText.rows * oText.cols <= oText.value.length) {
                oText.rows = ++rows;
            }
        }
    }
}
//-->
</script>

<textarea id="sc_content" name="sc_content" onkeypress="add_rows()" rows=4 cols=80></textarea>
|

댓글 1개

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

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 3,474
13년 전 조회 2,679
13년 전 조회 4,848
13년 전 조회 3,832
13년 전 조회 3,524
13년 전 조회 3,198
13년 전 조회 2,886
13년 전 조회 2,867
13년 전 조회 2,613
13년 전 조회 3,750
13년 전 조회 3,040
13년 전 조회 2,673
13년 전 조회 3,759
13년 전 조회 2,979
13년 전 조회 3,555
13년 전 조회 4,790
13년 전 조회 2,555
13년 전 조회 3,525
13년 전 조회 2,371
13년 전 조회 2,832
13년 전 조회 3,461
13년 전 조회 3,105
13년 전 조회 5,908
13년 전 조회 4,007
13년 전 조회 4,193
13년 전 조회 2,557
13년 전 조회 9,893
13년 전 조회 4,719
13년 전 조회 2,781
13년 전 조회 2,651
13년 전 조회 4,044
13년 전 조회 6,761
13년 전 조회 4,769
13년 전 조회 2,694
13년 전 조회 1.5만
13년 전 조회 2,566
13년 전 조회 1,986
13년 전 조회 5,171
13년 전 조회 2,656
13년 전 조회 1.1만
13년 전 조회 2,168
13년 전 조회 2,487
13년 전 조회 4,603
13년 전 조회 2,220
13년 전 조회 3,116
13년 전 조회 5,045
13년 전 조회 2,419
13년 전 조회 2,316
13년 전 조회 6,702
13년 전 조회 2,802
13년 전 조회 2,108
13년 전 조회 3,875
13년 전 조회 3,891
13년 전 조회 2,865
13년 전 조회 4,296
13년 전 조회 7,961
13년 전 조회 3,518
13년 전 조회 2,133
13년 전 조회 3,272
13년 전 조회 3,223
13년 전 조회 3,991
13년 전 조회 1,989
13년 전 조회 3,090
13년 전 조회 2,031
13년 전 조회 3,147
13년 전 조회 4,065
13년 전 조회 2,459
13년 전 조회 5,275
13년 전 조회 1.1만
13년 전 조회 2,527
13년 전 조회 3,871
13년 전 조회 3,500
13년 전 조회 4,261
13년 전 조회 7,415
13년 전 조회 3,896
13년 전 조회 4,388
13년 전 조회 2,381
13년 전 조회 2,142
13년 전 조회 3,242
13년 전 조회 7,251
13년 전 조회 2,834
13년 전 조회 6,126
13년 전 조회 2,153
13년 전 조회 5,497
13년 전 조회 2,651
13년 전 조회 2,490
13년 전 조회 2,862
13년 전 조회 2,671
13년 전 조회 1,932
13년 전 조회 1,913
13년 전 조회 2.2만
13년 전 조회 1,855
13년 전 조회 2,451
13년 전 조회 2,450
13년 전 조회 2,699
13년 전 조회 4,848
13년 전 조회 2,084
13년 전 조회 3,559
13년 전 조회 6,214
13년 전 조회 2,060