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,570
13년 전 조회 2,750
13년 전 조회 4,928
13년 전 조회 3,936
13년 전 조회 3,618
13년 전 조회 3,297
13년 전 조회 2,980
13년 전 조회 2,946
13년 전 조회 2,709
13년 전 조회 3,833
13년 전 조회 3,142
13년 전 조회 2,771
13년 전 조회 3,848
13년 전 조회 3,063
13년 전 조회 3,650
13년 전 조회 4,879
13년 전 조회 2,638
13년 전 조회 3,599
13년 전 조회 2,443
13년 전 조회 2,934
13년 전 조회 3,548
13년 전 조회 3,187
13년 전 조회 5,996
13년 전 조회 4,101
13년 전 조회 4,274
13년 전 조회 2,654
13년 전 조회 9,968
13년 전 조회 4,797
13년 전 조회 2,865
13년 전 조회 2,732
13년 전 조회 4,125
13년 전 조회 6,851
13년 전 조회 4,845
13년 전 조회 2,779
13년 전 조회 1.5만
13년 전 조회 2,651
13년 전 조회 2,083
13년 전 조회 5,216
13년 전 조회 2,696
13년 전 조회 1.1만
13년 전 조회 2,261
13년 전 조회 2,529
13년 전 조회 4,697
13년 전 조회 2,301
13년 전 조회 3,207
13년 전 조회 5,130
13년 전 조회 2,504
13년 전 조회 2,408
13년 전 조회 6,785
13년 전 조회 2,886
13년 전 조회 2,201
13년 전 조회 3,954
13년 전 조회 3,979
13년 전 조회 2,951
13년 전 조회 4,395
13년 전 조회 8,049
13년 전 조회 3,599
13년 전 조회 2,214
13년 전 조회 3,365
13년 전 조회 3,305
13년 전 조회 4,065
13년 전 조회 2,077
13년 전 조회 3,172
13년 전 조회 2,075
13년 전 조회 3,228
13년 전 조회 4,155
13년 전 조회 2,511
13년 전 조회 5,358
13년 전 조회 1.1만
13년 전 조회 2,595
13년 전 조회 3,979
13년 전 조회 3,577
13년 전 조회 4,312
13년 전 조회 7,522
13년 전 조회 3,947
13년 전 조회 4,474
13년 전 조회 2,482
13년 전 조회 2,232
13년 전 조회 3,334
13년 전 조회 7,351
13년 전 조회 2,924
13년 전 조회 6,212
13년 전 조회 2,200
13년 전 조회 5,576
13년 전 조회 2,733
13년 전 조회 2,584
13년 전 조회 2,910
13년 전 조회 2,775
13년 전 조회 2,016
13년 전 조회 1,984
13년 전 조회 2.2만
13년 전 조회 1,963
13년 전 조회 2,541
13년 전 조회 2,536
13년 전 조회 2,790
13년 전 조회 4,966
13년 전 조회 2,183
13년 전 조회 3,648
13년 전 조회 6,297
13년 전 조회 2,143