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,652
13년 전 조회 2,829
13년 전 조회 5,006
13년 전 조회 4,016
13년 전 조회 3,693
13년 전 조회 3,375
13년 전 조회 3,045
13년 전 조회 3,031
13년 전 조회 2,790
13년 전 조회 3,915
13년 전 조회 3,226
13년 전 조회 2,840
13년 전 조회 3,929
13년 전 조회 3,136
13년 전 조회 3,736
13년 전 조회 4,956
13년 전 조회 2,718
13년 전 조회 3,684
13년 전 조회 2,516
13년 전 조회 3,008
13년 전 조회 3,621
13년 전 조회 3,274
13년 전 조회 6,081
13년 전 조회 4,191
13년 전 조회 4,359
13년 전 조회 2,748
13년 전 조회 1만
13년 전 조회 4,881
13년 전 조회 2,956
13년 전 조회 2,829
13년 전 조회 4,222
13년 전 조회 6,950
13년 전 조회 4,942
13년 전 조회 2,864
13년 전 조회 1.5만
13년 전 조회 2,745
13년 전 조회 2,175
13년 전 조회 5,260
13년 전 조회 2,730
13년 전 조회 1.1만
13년 전 조회 2,360
13년 전 조회 2,574
13년 전 조회 4,800
13년 전 조회 2,393
13년 전 조회 3,312
13년 전 조회 5,234
13년 전 조회 2,602
13년 전 조회 2,499
13년 전 조회 6,886
13년 전 조회 2,982
13년 전 조회 2,300
13년 전 조회 4,048
13년 전 조회 4,083
13년 전 조회 3,048
13년 전 조회 4,481
13년 전 조회 8,147
13년 전 조회 3,708
13년 전 조회 2,320
13년 전 조회 3,449
13년 전 조회 3,416
13년 전 조회 4,177
13년 전 조회 2,171
13년 전 조회 3,271
13년 전 조회 2,109
13년 전 조회 3,331
13년 전 조회 4,245
13년 전 조회 2,560
13년 전 조회 5,463
13년 전 조회 1.2만
13년 전 조회 2,688
13년 전 조회 4,082
13년 전 조회 3,692
13년 전 조회 4,349
13년 전 조회 7,632
13년 전 조회 3,983
13년 전 조회 4,581
13년 전 조회 2,601
13년 전 조회 2,329
13년 전 조회 3,440
13년 전 조회 7,456
13년 전 조회 3,032
13년 전 조회 6,324
13년 전 조회 2,237
13년 전 조회 5,678
13년 전 조회 2,832
13년 전 조회 2,667
13년 전 조회 2,936
13년 전 조회 2,871
13년 전 조회 2,117
13년 전 조회 2,088
13년 전 조회 2.2만
13년 전 조회 2,051
13년 전 조회 2,649
13년 전 조회 2,625
13년 전 조회 2,878
13년 전 조회 5,059
13년 전 조회 2,274
13년 전 조회 3,761
13년 전 조회 6,396
13년 전 조회 2,233