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,686
13년 전 조회 2,863
13년 전 조회 5,042
13년 전 조회 4,059
13년 전 조회 3,733
13년 전 조회 3,423
13년 전 조회 3,098
13년 전 조회 3,083
13년 전 조회 2,836
13년 전 조회 3,961
13년 전 조회 3,268
13년 전 조회 2,888
13년 전 조회 3,978
13년 전 조회 3,192
13년 전 조회 3,787
13년 전 조회 5,000
13년 전 조회 2,763
13년 전 조회 3,718
13년 전 조회 2,568
13년 전 조회 3,061
13년 전 조회 3,670
13년 전 조회 3,321
13년 전 조회 6,126
13년 전 조회 4,237
13년 전 조회 4,419
13년 전 조회 2,795
13년 전 조회 1만
13년 전 조회 4,937
13년 전 조회 2,997
13년 전 조회 2,888
13년 전 조회 4,267
13년 전 조회 7,004
13년 전 조회 4,990
13년 전 조회 2,911
13년 전 조회 1.5만
13년 전 조회 2,801
13년 전 조회 2,221
13년 전 조회 5,270
13년 전 조회 2,742
13년 전 조회 1.1만
13년 전 조회 2,402
13년 전 조회 2,580
13년 전 조회 4,848
13년 전 조회 2,450
13년 전 조회 3,365
13년 전 조회 5,284
13년 전 조회 2,651
13년 전 조회 2,547
13년 전 조회 6,940
13년 전 조회 3,038
13년 전 조회 2,350
13년 전 조회 4,088
13년 전 조회 4,127
13년 전 조회 3,092
13년 전 조회 4,534
13년 전 조회 8,200
13년 전 조회 3,762
13년 전 조회 2,372
13년 전 조회 3,493
13년 전 조회 3,478
13년 전 조회 4,220
13년 전 조회 2,213
13년 전 조회 3,318
13년 전 조회 2,123
13년 전 조회 3,390
13년 전 조회 4,291
13년 전 조회 2,569
13년 전 조회 5,517
13년 전 조회 1.2만
13년 전 조회 2,746
13년 전 조회 4,122
13년 전 조회 3,742
13년 전 조회 4,363
13년 전 조회 7,682
13년 전 조회 4,004
13년 전 조회 4,630
13년 전 조회 2,653
13년 전 조회 2,369
13년 전 조회 3,480
13년 전 조회 7,505
13년 전 조회 3,072
13년 전 조회 6,365
13년 전 조회 2,257
13년 전 조회 5,728
13년 전 조회 2,893
13년 전 조회 2,724
13년 전 조회 2,952
13년 전 조회 2,910
13년 전 조회 2,167
13년 전 조회 2,143
13년 전 조회 2.2만
13년 전 조회 2,094
13년 전 조회 2,698
13년 전 조회 2,678
13년 전 조회 2,919
13년 전 조회 5,108
13년 전 조회 2,320
13년 전 조회 3,812
13년 전 조회 6,443
13년 전 조회 2,280