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,413
13년 전 조회 2,608
13년 전 조회 4,768
13년 전 조회 3,759
13년 전 조회 3,453
13년 전 조회 3,101
13년 전 조회 2,801
13년 전 조회 2,786
13년 전 조회 2,514
13년 전 조회 3,645
13년 전 조회 2,941
13년 전 조회 2,595
13년 전 조회 3,664
13년 전 조회 2,876
13년 전 조회 3,478
13년 전 조회 4,707
13년 전 조회 2,467
13년 전 조회 3,455
13년 전 조회 2,289
13년 전 조회 2,748
13년 전 조회 3,383
13년 전 조회 3,028
13년 전 조회 5,817
13년 전 조회 3,938
13년 전 조회 4,124
13년 전 조회 2,472
13년 전 조회 9,801
13년 전 조회 4,642
13년 전 조회 2,704
13년 전 조회 2,565
13년 전 조회 3,949
13년 전 조회 6,677
13년 전 조회 4,688
13년 전 조회 2,615
13년 전 조회 1.5만
13년 전 조회 2,486
13년 전 조회 1,913
13년 전 조회 5,145
13년 전 조회 2,635
13년 전 조회 1.1만
13년 전 조회 2,091
13년 전 조회 2,455
13년 전 조회 4,532
13년 전 조회 2,145
13년 전 조회 3,043
13년 전 조회 4,966
13년 전 조회 2,354
13년 전 조회 2,248
13년 전 조회 6,615
13년 전 조회 2,710
13년 전 조회 2,030
13년 전 조회 3,800
13년 전 조회 3,813
13년 전 조회 2,777
13년 전 조회 4,217
13년 전 조회 7,879
13년 전 조회 3,441
13년 전 조회 2,048
13년 전 조회 3,204
13년 전 조회 3,136
13년 전 조회 3,917
13년 전 조회 1,897
13년 전 조회 2,999
13년 전 조회 1,999
13년 전 조회 3,080
13년 전 조회 3,988
13년 전 조회 2,433
13년 전 조회 5,179
13년 전 조회 1.1만
13년 전 조회 2,440
13년 전 조회 3,795
13년 전 조회 3,402
13년 전 조회 4,232
13년 전 조회 7,333
13년 전 조회 3,867
13년 전 조회 4,296
13년 전 조회 2,288
13년 전 조회 2,065
13년 전 조회 3,152
13년 전 조회 7,164
13년 전 조회 2,753
13년 전 조회 6,037
13년 전 조회 2,133
13년 전 조회 5,399
13년 전 조회 2,564
13년 전 조회 2,407
13년 전 조회 2,837
13년 전 조회 2,580
13년 전 조회 1,832
13년 전 조회 1,825
13년 전 조회 2.2만
13년 전 조회 1,784
13년 전 조회 2,351
13년 전 조회 2,375
13년 전 조회 2,629
13년 전 조회 4,769
13년 전 조회 1,993
13년 전 조회 3,481
13년 전 조회 6,140
13년 전 조회 1,986