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개

댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
12년 전 조회 3,259
12년 전 조회 2,431
12년 전 조회 4,614
12년 전 조회 3,596
12년 전 조회 3,302
13년 전 조회 2,963
13년 전 조회 2,639
13년 전 조회 2,655
13년 전 조회 2,385
13년 전 조회 3,479
13년 전 조회 2,799
13년 전 조회 2,459
13년 전 조회 3,515
13년 전 조회 2,742
13년 전 조회 3,314
13년 전 조회 4,538
13년 전 조회 2,309
13년 전 조회 3,323
13년 전 조회 2,146
13년 전 조회 2,603
13년 전 조회 3,248
13년 전 조회 2,880
13년 전 조회 5,672
13년 전 조회 3,779
13년 전 조회 3,984
13년 전 조회 2,346
13년 전 조회 9,659
13년 전 조회 4,483
13년 전 조회 2,540
13년 전 조회 2,407
13년 전 조회 3,817
13년 전 조회 6,536
13년 전 조회 4,545
13년 전 조회 2,454
13년 전 조회 1.5만
13년 전 조회 2,333
13년 전 조회 1,742
13년 전 조회 5,037
13년 전 조회 2,518
13년 전 조회 1만
13년 전 조회 1,935
13년 전 조회 2,334
13년 전 조회 4,393
13년 전 조회 1,996
13년 전 조회 2,895
13년 전 조회 4,825
13년 전 조회 2,211
13년 전 조회 2,114
13년 전 조회 6,486
13년 전 조회 2,574
13년 전 조회 1,905
13년 전 조회 3,644
13년 전 조회 3,662
13년 전 조회 2,624
13년 전 조회 4,055
13년 전 조회 7,727
13년 전 조회 3,322
13년 전 조회 1,891
13년 전 조회 3,041
13년 전 조회 3,001
13년 전 조회 3,780
13년 전 조회 1,739
13년 전 조회 2,843
13년 전 조회 1,872
13년 전 조회 2,938
13년 전 조회 3,827
13년 전 조회 2,305
13년 전 조회 5,032
13년 전 조회 1.1만
13년 전 조회 2,300
13년 전 조회 3,664
13년 전 조회 3,275
13년 전 조회 4,122
13년 전 조회 7,188
13년 전 조회 3,754
13년 전 조회 4,148
13년 전 조회 2,134
13년 전 조회 1,911
13년 전 조회 3,000
13년 전 조회 7,011
13년 전 조회 2,613
13년 전 조회 5,880
13년 전 조회 1,988
13년 전 조회 5,252
13년 전 조회 2,420
13년 전 조회 2,246
13년 전 조회 2,718
13년 전 조회 2,430
13년 전 조회 1,689
13년 전 조회 1,664
13년 전 조회 2.2만
13년 전 조회 1,627
13년 전 조회 2,208
13년 전 조회 2,239
13년 전 조회 2,458
13년 전 조회 4,590
13년 전 조회 1,823
13년 전 조회 3,336
13년 전 조회 5,990
13년 전 조회 1,802