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,608
13년 전 조회 2,780
13년 전 조회 4,966
13년 전 조회 3,969
13년 전 조회 3,652
13년 전 조회 3,332
13년 전 조회 3,014
13년 전 조회 2,981
13년 전 조회 2,749
13년 전 조회 3,864
13년 전 조회 3,176
13년 전 조회 2,803
13년 전 조회 3,888
13년 전 조회 3,093
13년 전 조회 3,689
13년 전 조회 4,914
13년 전 조회 2,665
13년 전 조회 3,630
13년 전 조회 2,475
13년 전 조회 2,973
13년 전 조회 3,582
13년 전 조회 3,230
13년 전 조회 6,027
13년 전 조회 4,141
13년 전 조회 4,302
13년 전 조회 2,699
13년 전 조회 1만
13년 전 조회 4,826
13년 전 조회 2,897
13년 전 조회 2,779
13년 전 조회 4,167
13년 전 조회 6,893
13년 전 조회 4,891
13년 전 조회 2,809
13년 전 조회 1.5만
13년 전 조회 2,685
13년 전 조회 2,117
13년 전 조회 5,240
13년 전 조회 2,712
13년 전 조회 1.1만
13년 전 조회 2,294
13년 전 조회 2,550
13년 전 조회 4,737
13년 전 조회 2,344
13년 전 조회 3,256
13년 전 조회 5,167
13년 전 조회 2,543
13년 전 조회 2,446
13년 전 조회 6,834
13년 전 조회 2,925
13년 전 조회 2,242
13년 전 조회 3,986
13년 전 조회 4,024
13년 전 조회 2,993
13년 전 조회 4,433
13년 전 조회 8,090
13년 전 조회 3,647
13년 전 조회 2,266
13년 전 조회 3,395
13년 전 조회 3,351
13년 전 조회 4,106
13년 전 조회 2,119
13년 전 조회 3,216
13년 전 조회 2,090
13년 전 조회 3,277
13년 전 조회 4,188
13년 전 조회 2,531
13년 전 조회 5,395
13년 전 조회 1.2만
13년 전 조회 2,640
13년 전 조회 4,028
13년 전 조회 3,622
13년 전 조회 4,327
13년 전 조회 7,575
13년 전 조회 3,965
13년 전 조회 4,520
13년 전 조회 2,525
13년 전 조회 2,279
13년 전 조회 3,380
13년 전 조회 7,403
13년 전 조회 2,971
13년 전 조회 6,269
13년 전 조회 2,217
13년 전 조회 5,623
13년 전 조회 2,778
13년 전 조회 2,621
13년 전 조회 2,923
13년 전 조회 2,819
13년 전 조회 2,062
13년 전 조회 2,030
13년 전 조회 2.2만
13년 전 조회 2,007
13년 전 조회 2,592
13년 전 조회 2,568
13년 전 조회 2,837
13년 전 조회 5,017
13년 전 조회 2,216
13년 전 조회 3,696
13년 전 조회 6,345
13년 전 조회 2,186