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,604
13년 전 조회 2,778
13년 전 조회 4,955
13년 전 조회 3,964
13년 전 조회 3,651
13년 전 조회 3,327
13년 전 조회 3,007
13년 전 조회 2,979
13년 전 조회 2,743
13년 전 조회 3,861
13년 전 조회 3,170
13년 전 조회 2,797
13년 전 조회 3,884
13년 전 조회 3,091
13년 전 조회 3,685
13년 전 조회 4,910
13년 전 조회 2,661
13년 전 조회 3,628
13년 전 조회 2,473
13년 전 조회 2,967
13년 전 조회 3,576
13년 전 조회 3,225
13년 전 조회 6,021
13년 전 조회 4,136
13년 전 조회 4,295
13년 전 조회 2,694
13년 전 조회 1만
13년 전 조회 4,825
13년 전 조회 2,893
13년 전 조회 2,775
13년 전 조회 4,162
13년 전 조회 6,888
13년 전 조회 4,886
13년 전 조회 2,803
13년 전 조회 1.5만
13년 전 조회 2,677
13년 전 조회 2,108
13년 전 조회 5,239
13년 전 조회 2,708
13년 전 조회 1.1만
13년 전 조회 2,288
13년 전 조회 2,544
13년 전 조회 4,733
13년 전 조회 2,338
13년 전 조회 3,249
13년 전 조회 5,164
13년 전 조회 2,539
13년 전 조회 2,443
13년 전 조회 6,829
13년 전 조회 2,920
13년 전 조회 2,237
13년 전 조회 3,984
13년 전 조회 4,017
13년 전 조회 2,985
13년 전 조회 4,423
13년 전 조회 8,087
13년 전 조회 3,642
13년 전 조회 2,256
13년 전 조회 3,393
13년 전 조회 3,344
13년 전 조회 4,101
13년 전 조회 2,112
13년 전 조회 3,206
13년 전 조회 2,087
13년 전 조회 3,274
13년 전 조회 4,184
13년 전 조회 2,521
13년 전 조회 5,387
13년 전 조회 1.2만
13년 전 조회 2,635
13년 전 조회 4,021
13년 전 조회 3,613
13년 전 조회 4,326
13년 전 조회 7,564
13년 전 조회 3,963
13년 전 조회 4,512
13년 전 조회 2,519
13년 전 조회 2,273
13년 전 조회 3,375
13년 전 조회 7,396
13년 전 조회 2,965
13년 전 조회 6,261
13년 전 조회 2,215
13년 전 조회 5,619
13년 전 조회 2,771
13년 전 조회 2,615
13년 전 조회 2,920
13년 전 조회 2,811
13년 전 조회 2,056
13년 전 조회 2,023
13년 전 조회 2.2만
13년 전 조회 2,004
13년 전 조회 2,580
13년 전 조회 2,565
13년 전 조회 2,834
13년 전 조회 5,012
13년 전 조회 2,211
13년 전 조회 3,690
13년 전 조회 6,343
13년 전 조회 2,178