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,670
13년 전 조회 2,849
13년 전 조회 5,024
13년 전 조회 4,041
13년 전 조회 3,711
13년 전 조회 3,403
13년 전 조회 3,074
13년 전 조회 3,058
13년 전 조회 2,814
13년 전 조회 3,939
13년 전 조회 3,244
13년 전 조회 2,859
13년 전 조회 3,958
13년 전 조회 3,168
13년 전 조회 3,767
13년 전 조회 4,974
13년 전 조회 2,749
13년 전 조회 3,704
13년 전 조회 2,543
13년 전 조회 3,036
13년 전 조회 3,650
13년 전 조회 3,294
13년 전 조회 6,107
13년 전 조회 4,220
13년 전 조회 4,394
13년 전 조회 2,772
13년 전 조회 1만
13년 전 조회 4,909
13년 전 조회 2,978
13년 전 조회 2,855
13년 전 조회 4,249
13년 전 조회 6,982
13년 전 조회 4,971
13년 전 조회 2,891
13년 전 조회 1.5만
13년 전 조회 2,772
13년 전 조회 2,202
13년 전 조회 5,267
13년 전 조회 2,738
13년 전 조회 1.1만
13년 전 조회 2,389
13년 전 조회 2,576
13년 전 조회 4,820
13년 전 조회 2,419
13년 전 조회 3,340
13년 전 조회 5,256
13년 전 조회 2,630
13년 전 조회 2,529
13년 전 조회 6,920
13년 전 조회 3,003
13년 전 조회 2,324
13년 전 조회 4,073
13년 전 조회 4,104
13년 전 조회 3,072
13년 전 조회 4,512
13년 전 조회 8,175
13년 전 조회 3,734
13년 전 조회 2,346
13년 전 조회 3,473
13년 전 조회 3,445
13년 전 조회 4,197
13년 전 조회 2,189
13년 전 조회 3,292
13년 전 조회 2,117
13년 전 조회 3,366
13년 전 조회 4,268
13년 전 조회 2,568
13년 전 조회 5,494
13년 전 조회 1.2만
13년 전 조회 2,721
13년 전 조회 4,102
13년 전 조회 3,725
13년 전 조회 4,358
13년 전 조회 7,659
13년 전 조회 3,993
13년 전 조회 4,606
13년 전 조회 2,631
13년 전 조회 2,347
13년 전 조회 3,460
13년 전 조회 7,487
13년 전 조회 3,049
13년 전 조회 6,347
13년 전 조회 2,252
13년 전 조회 5,706
13년 전 조회 2,860
13년 전 조회 2,700
13년 전 조회 2,947
13년 전 조회 2,891
13년 전 조회 2,142
13년 전 조회 2,115
13년 전 조회 2.2만
13년 전 조회 2,070
13년 전 조회 2,673
13년 전 조회 2,656
13년 전 조회 2,903
13년 전 조회 5,088
13년 전 조회 2,295
13년 전 조회 3,786
13년 전 조회 6,423
13년 전 조회 2,259