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,371
13년 전 조회 2,556
13년 전 조회 4,724
13년 전 조회 3,713
13년 전 조회 3,418
13년 전 조회 3,062
13년 전 조회 2,760
13년 전 조회 2,744
13년 전 조회 2,485
13년 전 조회 3,612
13년 전 조회 2,908
13년 전 조회 2,565
13년 전 조회 3,619
13년 전 조회 2,833
13년 전 조회 3,437
13년 전 조회 4,674
13년 전 조회 2,435
13년 전 조회 3,420
13년 전 조회 2,253
13년 전 조회 2,713
13년 전 조회 3,348
13년 전 조회 2,988
13년 전 조회 5,778
13년 전 조회 3,908
13년 전 조회 4,091
13년 전 조회 2,442
13년 전 조회 9,759
13년 전 조회 4,611
13년 전 조회 2,668
13년 전 조회 2,533
13년 전 조회 3,914
13년 전 조회 6,645
13년 전 조회 4,648
13년 전 조회 2,569
13년 전 조회 1.5만
13년 전 조회 2,450
13년 전 조회 1,873
13년 전 조회 5,142
13년 전 조회 2,635
13년 전 조회 1.1만
13년 전 조회 2,047
13년 전 조회 2,451
13년 전 조회 4,500
13년 전 조회 2,101
13년 전 조회 3,001
13년 전 조회 4,929
13년 전 조회 2,317
13년 전 조회 2,214
13년 전 조회 6,582
13년 전 조회 2,674
13년 전 조회 2,006
13년 전 조회 3,757
13년 전 조회 3,773
13년 전 조회 2,727
13년 전 조회 4,178
13년 전 조회 7,838
13년 전 조회 3,412
13년 전 조회 2,006
13년 전 조회 3,162
13년 전 조회 3,097
13년 전 조회 3,894
13년 전 조회 1,856
13년 전 조회 2,963
13년 전 조회 1,995
13년 전 조회 3,038
13년 전 조회 3,950
13년 전 조회 2,431
13년 전 조회 5,137
13년 전 조회 1.1만
13년 전 조회 2,400
13년 전 조회 3,753
13년 전 조회 3,370
13년 전 조회 4,227
13년 전 조회 7,295
13년 전 조회 3,863
13년 전 조회 4,257
13년 전 조회 2,243
13년 전 조회 2,020
13년 전 조회 3,115
13년 전 조회 7,133
13년 전 조회 2,716
13년 전 조회 5,997
13년 전 조회 2,130
13년 전 조회 5,363
13년 전 조회 2,531
13년 전 조회 2,365
13년 전 조회 2,833
13년 전 조회 2,540
13년 전 조회 1,797
13년 전 조회 1,795
13년 전 조회 2.2만
13년 전 조회 1,752
13년 전 조회 2,306
13년 전 조회 2,334
13년 전 조회 2,584
13년 전 조회 4,722
13년 전 조회 1,947
13년 전 조회 3,455
13년 전 조회 6,102
13년 전 조회 1,938