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,673
13년 전 조회 2,849
13년 전 조회 5,027
13년 전 조회 4,043
13년 전 조회 3,717
13년 전 조회 3,404
13년 전 조회 3,078
13년 전 조회 3,061
13년 전 조회 2,819
13년 전 조회 3,943
13년 전 조회 3,249
13년 전 조회 2,862
13년 전 조회 3,962
13년 전 조회 3,173
13년 전 조회 3,771
13년 전 조회 4,977
13년 전 조회 2,752
13년 전 조회 3,704
13년 전 조회 2,544
13년 전 조회 3,041
13년 전 조회 3,654
13년 전 조회 3,303
13년 전 조회 6,111
13년 전 조회 4,225
13년 전 조회 4,399
13년 전 조회 2,778
13년 전 조회 1만
13년 전 조회 4,915
13년 전 조회 2,981
13년 전 조회 2,861
13년 전 조회 4,253
13년 전 조회 6,988
13년 전 조회 4,977
13년 전 조회 2,896
13년 전 조회 1.5만
13년 전 조회 2,773
13년 전 조회 2,204
13년 전 조회 5,267
13년 전 조회 2,739
13년 전 조회 1.1만
13년 전 조회 2,390
13년 전 조회 2,578
13년 전 조회 4,825
13년 전 조회 2,425
13년 전 조회 3,341
13년 전 조회 5,265
13년 전 조회 2,631
13년 전 조회 2,531
13년 전 조회 6,921
13년 전 조회 3,008
13년 전 조회 2,330
13년 전 조회 4,073
13년 전 조회 4,107
13년 전 조회 3,075
13년 전 조회 4,514
13년 전 조회 8,180
13년 전 조회 3,741
13년 전 조회 2,356
13년 전 조회 3,475
13년 전 조회 3,448
13년 전 조회 4,198
13년 전 조회 2,190
13년 전 조회 3,297
13년 전 조회 2,118
13년 전 조회 3,371
13년 전 조회 4,272
13년 전 조회 2,569
13년 전 조회 5,498
13년 전 조회 1.2만
13년 전 조회 2,723
13년 전 조회 4,108
13년 전 조회 3,730
13년 전 조회 4,359
13년 전 조회 7,663
13년 전 조회 3,994
13년 전 조회 4,611
13년 전 조회 2,635
13년 전 조회 2,351
13년 전 조회 3,464
13년 전 조회 7,491
13년 전 조회 3,055
13년 전 조회 6,352
13년 전 조회 2,252
13년 전 조회 5,711
13년 전 조회 2,865
13년 전 조회 2,704
13년 전 조회 2,948
13년 전 조회 2,893
13년 전 조회 2,145
13년 전 조회 2,124
13년 전 조회 2.2만
13년 전 조회 2,073
13년 전 조회 2,682
13년 전 조회 2,657
13년 전 조회 2,906
13년 전 조회 5,091
13년 전 조회 2,302
13년 전 조회 3,790
13년 전 조회 6,429
13년 전 조회 2,262