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,651
13년 전 조회 2,824
13년 전 조회 5,005
13년 전 조회 4,013
13년 전 조회 3,689
13년 전 조회 3,373
13년 전 조회 3,043
13년 전 조회 3,026
13년 전 조회 2,784
13년 전 조회 3,913
13년 전 조회 3,222
13년 전 조회 2,838
13년 전 조회 3,928
13년 전 조회 3,134
13년 전 조회 3,733
13년 전 조회 4,953
13년 전 조회 2,711
13년 전 조회 3,683
13년 전 조회 2,513
13년 전 조회 3,006
13년 전 조회 3,618
13년 전 조회 3,267
13년 전 조회 6,078
13년 전 조회 4,189
13년 전 조회 4,358
13년 전 조회 2,741
13년 전 조회 1만
13년 전 조회 4,875
13년 전 조회 2,952
13년 전 조회 2,822
13년 전 조회 4,221
13년 전 조회 6,943
13년 전 조회 4,936
13년 전 조회 2,860
13년 전 조회 1.5만
13년 전 조회 2,740
13년 전 조회 2,171
13년 전 조회 5,258
13년 전 조회 2,730
13년 전 조회 1.1만
13년 전 조회 2,355
13년 전 조회 2,573
13년 전 조회 4,797
13년 전 조회 2,388
13년 전 조회 3,308
13년 전 조회 5,226
13년 전 조회 2,600
13년 전 조회 2,497
13년 전 조회 6,882
13년 전 조회 2,976
13년 전 조회 2,295
13년 전 조회 4,046
13년 전 조회 4,078
13년 전 조회 3,046
13년 전 조회 4,480
13년 전 조회 8,141
13년 전 조회 3,703
13년 전 조회 2,313
13년 전 조회 3,447
13년 전 조회 3,410
13년 전 조회 4,169
13년 전 조회 2,167
13년 전 조회 3,265
13년 전 조회 2,108
13년 전 조회 3,331
13년 전 조회 4,241
13년 전 조회 2,556
13년 전 조회 5,458
13년 전 조회 1.2만
13년 전 조회 2,686
13년 전 조회 4,078
13년 전 조회 3,689
13년 전 조회 4,348
13년 전 조회 7,627
13년 전 조회 3,982
13년 전 조회 4,575
13년 전 조회 2,597
13년 전 조회 2,326
13년 전 조회 3,434
13년 전 조회 7,451
13년 전 조회 3,025
13년 전 조회 6,320
13년 전 조회 2,235
13년 전 조회 5,673
13년 전 조회 2,830
13년 전 조회 2,667
13년 전 조회 2,935
13년 전 조회 2,868
13년 전 조회 2,108
13년 전 조회 2,084
13년 전 조회 2.2만
13년 전 조회 2,050
13년 전 조회 2,644
13년 전 조회 2,617
13년 전 조회 2,876
13년 전 조회 5,056
13년 전 조회 2,268
13년 전 조회 3,759
13년 전 조회 6,395
13년 전 조회 2,227