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,666
13년 전 조회 2,845
13년 전 조회 5,019
13년 전 조회 4,033
13년 전 조회 3,705
13년 전 조회 3,399
13년 전 조회 3,067
13년 전 조회 3,052
13년 전 조회 2,811
13년 전 조회 3,934
13년 전 조회 3,242
13년 전 조회 2,858
13년 전 조회 3,953
13년 전 조회 3,162
13년 전 조회 3,761
13년 전 조회 4,967
13년 전 조회 2,745
13년 전 조회 3,698
13년 전 조회 2,534
13년 전 조회 3,028
13년 전 조회 3,644
13년 전 조회 3,290
13년 전 조회 6,104
13년 전 조회 4,215
13년 전 조회 4,389
13년 전 조회 2,768
13년 전 조회 1만
13년 전 조회 4,906
13년 전 조회 2,974
13년 전 조회 2,851
13년 전 조회 4,242
13년 전 조회 6,976
13년 전 조회 4,958
13년 전 조회 2,886
13년 전 조회 1.5만
13년 전 조회 2,766
13년 전 조회 2,200
13년 전 조회 5,266
13년 전 조회 2,737
13년 전 조회 1.1만
13년 전 조회 2,386
13년 전 조회 2,575
13년 전 조회 4,816
13년 전 조회 2,411
13년 전 조회 3,336
13년 전 조회 5,255
13년 전 조회 2,623
13년 전 조회 2,521
13년 전 조회 6,915
13년 전 조회 2,999
13년 전 조회 2,318
13년 전 조회 4,069
13년 전 조회 4,102
13년 전 조회 3,069
13년 전 조회 4,509
13년 전 조회 8,172
13년 전 조회 3,729
13년 전 조회 2,341
13년 전 조회 3,468
13년 전 조회 3,436
13년 전 조회 4,195
13년 전 조회 2,187
13년 전 조회 3,290
13년 전 조회 2,117
13년 전 조회 3,363
13년 전 조회 4,262
13년 전 조회 2,566
13년 전 조회 5,491
13년 전 조회 1.2만
13년 전 조회 2,718
13년 전 조회 4,095
13년 전 조회 3,719
13년 전 조회 4,356
13년 전 조회 7,656
13년 전 조회 3,988
13년 전 조회 4,598
13년 전 조회 2,625
13년 전 조회 2,346
13년 전 조회 3,456
13년 전 조회 7,480
13년 전 조회 3,048
13년 전 조회 6,341
13년 전 조회 2,246
13년 전 조회 5,697
13년 전 조회 2,856
13년 전 조회 2,697
13년 전 조회 2,944
13년 전 조회 2,888
13년 전 조회 2,139
13년 전 조회 2,107
13년 전 조회 2.2만
13년 전 조회 2,066
13년 전 조회 2,667
13년 전 조회 2,649
13년 전 조회 2,903
13년 전 조회 5,084
13년 전 조회 2,289
13년 전 조회 3,785
13년 전 조회 6,416
13년 전 조회 2,253