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,152
12년 전 조회 2,309
12년 전 조회 4,491
12년 전 조회 3,494
12년 전 조회 3,192
12년 전 조회 2,862
12년 전 조회 2,527
12년 전 조회 2,529
12년 전 조회 2,283
12년 전 조회 3,366
12년 전 조회 2,679
12년 전 조회 2,370
12년 전 조회 3,445
12년 전 조회 2,640
12년 전 조회 3,225
12년 전 조회 4,431
13년 전 조회 2,192
13년 전 조회 3,184
13년 전 조회 2,045
13년 전 조회 2,486
13년 전 조회 3,156
13년 전 조회 2,780
13년 전 조회 5,578
13년 전 조회 3,686
13년 전 조회 3,860
13년 전 조회 2,241
13년 전 조회 9,547
13년 전 조회 4,371
13년 전 조회 2,436
13년 전 조회 2,290
13년 전 조회 3,722
13년 전 조회 6,412
13년 전 조회 4,425
13년 전 조회 2,335
13년 전 조회 1.5만
13년 전 조회 2,222
13년 전 조회 1,625
13년 전 조회 4,844
13년 전 조회 2,352
13년 전 조회 1만
13년 전 조회 1,817
13년 전 조회 2,105
13년 전 조회 4,278
13년 전 조회 1,898
13년 전 조회 2,792
13년 전 조회 4,720
13년 전 조회 2,086
13년 전 조회 2,010
13년 전 조회 6,362
13년 전 조회 2,488
13년 전 조회 1,808
13년 전 조회 3,545
13년 전 조회 3,556
13년 전 조회 2,522
13년 전 조회 3,956
13년 전 조회 7,632
13년 전 조회 3,200
13년 전 조회 1,778
13년 전 조회 2,936
13년 전 조회 2,885
13년 전 조회 3,639
13년 전 조회 1,623
13년 전 조회 2,705
13년 전 조회 1,639
13년 전 조회 2,820
13년 전 조회 3,701
13년 전 조회 2,111
13년 전 조회 4,901
13년 전 조회 1.1만
13년 전 조회 2,180
13년 전 조회 3,560
13년 전 조회 3,163
13년 전 조회 3,917
13년 전 조회 7,085
13년 전 조회 3,580
13년 전 조회 4,048
13년 전 조회 2,028
13년 전 조회 1,799
13년 전 조회 2,897
13년 전 조회 6,910
13년 전 조회 2,501
13년 전 조회 5,742
13년 전 조회 1,782
13년 전 조회 5,132
13년 전 조회 2,300
13년 전 조회 2,125
13년 전 조회 2,515
13년 전 조회 2,327
13년 전 조회 1,570
13년 전 조회 1,543
13년 전 조회 2.1만
13년 전 조회 1,520
13년 전 조회 2,084
13년 전 조회 2,122
13년 전 조회 2,342
13년 전 조회 4,496
13년 전 조회 1,711
13년 전 조회 3,235
13년 전 조회 5,892
13년 전 조회 1,679