리자

JS 이용해서 동적으로 테이블 생성

· 18년 전 · 2940
<script>
    function erase(o)
    {
        alert(document.getElementById(o));
        document.getElementById(o).removeChild(document.getElementById(o).getElementsByTagName('tr')[0]);
    }

    function make()
    {
        alert("우하하");
        var tbl     = document.getElementById("tbl");
        var tblBody = document.getElementById("tblBody");

        // creating all cells
        for (var j = 0; j < 2; j++) {
            // creates a table row
            var row = document.createElement("tr");

            for (var i = 0; i < 2; i++) {
                // Create a <td> element and a text node, make the text
                // node the contents of the <td>, and put the <td> at
                // the end of the table row
                var cell = document.createElement("td");
                var cellText = document.createTextNode("cell is row "+j+", column "+i);
                cell.appendChild(cellText);
                row.appendChild(cell);
            }

            // add the row to the end of the table body
            tblBody.appendChild(row);
        }
        tbl.setAttribute("border", "2");
    }
</script>

<input type="button" value="start" onclick="make()">
<input type="button" value="delete" onclick="erase('tblBody');">

<table id="tbl">
    <tbody id="tblBody">


    </tbody>
</table>
 
꼭 tbody 태그를 넣어야 한다는거 유의!!
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
18년 전 조회 3,037
18년 전 조회 2,360
18년 전 조회 2,542
18년 전 조회 3,088
18년 전 조회 3,175
18년 전 조회 4,346
18년 전 조회 6,323
18년 전 조회 2,284
18년 전 조회 2,393
18년 전 조회 2,099
18년 전 조회 1,846
18년 전 조회 2,845
18년 전 조회 1,886
18년 전 조회 1,759
18년 전 조회 4,946
18년 전 조회 1,999
18년 전 조회 2,046
18년 전 조회 2,048
18년 전 조회 2,174
18년 전 조회 3,830
18년 전 조회 1,858
18년 전 조회 1,729
18년 전 조회 1,553
18년 전 조회 2,052
18년 전 조회 2,092
18년 전 조회 3,865
18년 전 조회 2,198
18년 전 조회 3,344
18년 전 조회 4,958
18년 전 조회 3,089
18년 전 조회 8,261
18년 전 조회 4,275
18년 전 조회 2,969
18년 전 조회 1,737
18년 전 조회 2,845
18년 전 조회 5,253
18년 전 조회 5,419
18년 전 조회 2,300
18년 전 조회 4,557
18년 전 조회 4,315
18년 전 조회 4,349
18년 전 조회 2,481
18년 전 조회 4,407
18년 전 조회 2,390
18년 전 조회 3,502
18년 전 조회 5,144
18년 전 조회 2,158
18년 전 조회 3,620
18년 전 조회 1,844
18년 전 조회 2,941
18년 전 조회 1,899
18년 전 조회 2,931
18년 전 조회 2,767
18년 전 조회 1,783
18년 전 조회 1,718
18년 전 조회 1,963
18년 전 조회 2,466
18년 전 조회 2,250
18년 전 조회 2,599
18년 전 조회 5,122
18년 전 조회 2,020
18년 전 조회 1,456
18년 전 조회 1,576
18년 전 조회 1,551
18년 전 조회 1,272
18년 전 조회 1,272
18년 전 조회 1,609
18년 전 조회 1,566
18년 전 조회 2,561
18년 전 조회 1,437
18년 전 조회 1,822
18년 전 조회 2,299
18년 전 조회 1,480
18년 전 조회 3,049
18년 전 조회 1,484
18년 전 조회 1,851
18년 전 조회 1,699
18년 전 조회 1,650
18년 전 조회 1,437
18년 전 조회 1,272
18년 전 조회 1,879
18년 전 조회 1,309
18년 전 조회 3,827
18년 전 조회 1,927
18년 전 조회 2,012
18년 전 조회 1,330
18년 전 조회 2,072
18년 전 조회 1,308
18년 전 조회 1,375
18년 전 조회 1,215
18년 전 조회 1,201
18년 전 조회 1,290
18년 전 조회 2,792
18년 전 조회 1,746
18년 전 조회 1,834
18년 전 조회 1,393
18년 전 조회 2,051
18년 전 조회 1,700
18년 전 조회 1,686
18년 전 조회 1,907