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,388
13년 전 조회 2,578
13년 전 조회 4,740
13년 전 조회 3,732
13년 전 조회 3,435
13년 전 조회 3,081
13년 전 조회 2,784
13년 전 조회 2,767
13년 전 조회 2,499
13년 전 조회 3,630
13년 전 조회 2,929
13년 전 조회 2,579
13년 전 조회 3,638
13년 전 조회 2,854
13년 전 조회 3,459
13년 전 조회 4,689
13년 전 조회 2,449
13년 전 조회 3,435
13년 전 조회 2,271
13년 전 조회 2,734
13년 전 조회 3,367
13년 전 조회 3,007
13년 전 조회 5,796
13년 전 조회 3,926
13년 전 조회 4,109
13년 전 조회 2,454
13년 전 조회 9,779
13년 전 조회 4,627
13년 전 조회 2,685
13년 전 조회 2,549
13년 전 조회 3,933
13년 전 조회 6,654
13년 전 조회 4,671
13년 전 조회 2,587
13년 전 조회 1.5만
13년 전 조회 2,465
13년 전 조회 1,887
13년 전 조회 5,142
13년 전 조회 2,635
13년 전 조회 1.1만
13년 전 조회 2,072
13년 전 조회 2,453
13년 전 조회 4,512
13년 전 조회 2,123
13년 전 조회 3,024
13년 전 조회 4,947
13년 전 조회 2,330
13년 전 조회 2,229
13년 전 조회 6,597
13년 전 조회 2,698
13년 전 조회 2,013
13년 전 조회 3,785
13년 전 조회 3,798
13년 전 조회 2,751
13년 전 조회 4,196
13년 전 조회 7,861
13년 전 조회 3,427
13년 전 조회 2,030
13년 전 조회 3,181
13년 전 조회 3,118
13년 전 조회 3,903
13년 전 조회 1,874
13년 전 조회 2,980
13년 전 조회 1,997
13년 전 조회 3,056
13년 전 조회 3,968
13년 전 조회 2,432
13년 전 조회 5,161
13년 전 조회 1.1만
13년 전 조회 2,420
13년 전 조회 3,768
13년 전 조회 3,385
13년 전 조회 4,229
13년 전 조회 7,316
13년 전 조회 3,867
13년 전 조회 4,278
13년 전 조회 2,267
13년 전 조회 2,043
13년 전 조회 3,131
13년 전 조회 7,150
13년 전 조회 2,732
13년 전 조회 6,020
13년 전 조회 2,130
13년 전 조회 5,381
13년 전 조회 2,550
13년 전 조회 2,390
13년 전 조회 2,835
13년 전 조회 2,558
13년 전 조회 1,817
13년 전 조회 1,813
13년 전 조회 2.2만
13년 전 조회 1,772
13년 전 조회 2,329
13년 전 조회 2,354
13년 전 조회 2,604
13년 전 조회 4,742
13년 전 조회 1,969
13년 전 조회 3,469
13년 전 조회 6,122
13년 전 조회 1,963