리자

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

· 18년 전 · 2934
<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,033
18년 전 조회 2,354
18년 전 조회 2,540
18년 전 조회 3,086
18년 전 조회 3,170
18년 전 조회 4,341
18년 전 조회 6,320
18년 전 조회 2,281
18년 전 조회 2,389
18년 전 조회 2,095
18년 전 조회 1,840
18년 전 조회 2,841
18년 전 조회 1,884
18년 전 조회 1,757
18년 전 조회 4,941
18년 전 조회 1,993
18년 전 조회 2,043
18년 전 조회 2,045
18년 전 조회 2,171
18년 전 조회 3,829
18년 전 조회 1,855
18년 전 조회 1,725
18년 전 조회 1,551
18년 전 조회 2,051
18년 전 조회 2,089
18년 전 조회 3,860
18년 전 조회 2,196
18년 전 조회 3,338
18년 전 조회 4,951
18년 전 조회 3,086
18년 전 조회 8,256
18년 전 조회 4,270
18년 전 조회 2,968
18년 전 조회 1,731
18년 전 조회 2,841
18년 전 조회 5,250
18년 전 조회 5,417
18년 전 조회 2,298
18년 전 조회 4,555
18년 전 조회 4,311
18년 전 조회 4,345
18년 전 조회 2,477
18년 전 조회 4,402
18년 전 조회 2,387
18년 전 조회 3,495
18년 전 조회 5,142
18년 전 조회 2,150
18년 전 조회 3,618
18년 전 조회 1,841
18년 전 조회 2,935
18년 전 조회 1,894
18년 전 조회 2,926
18년 전 조회 2,761
18년 전 조회 1,781
18년 전 조회 1,715
18년 전 조회 1,960
18년 전 조회 2,461
18년 전 조회 2,248
18년 전 조회 2,593
18년 전 조회 5,120
18년 전 조회 2,018
18년 전 조회 1,449
18년 전 조회 1,574
18년 전 조회 1,549
18년 전 조회 1,270
18년 전 조회 1,269
18년 전 조회 1,606
18년 전 조회 1,564
18년 전 조회 2,560
18년 전 조회 1,431
18년 전 조회 1,816
18년 전 조회 2,296
18년 전 조회 1,474
18년 전 조회 3,047
18년 전 조회 1,481
18년 전 조회 1,849
18년 전 조회 1,695
18년 전 조회 1,646
18년 전 조회 1,434
18년 전 조회 1,268
18년 전 조회 1,875
18년 전 조회 1,305
18년 전 조회 3,825
18년 전 조회 1,924
18년 전 조회 2,007
18년 전 조회 1,328
18년 전 조회 2,069
18년 전 조회 1,303
18년 전 조회 1,372
18년 전 조회 1,210
18년 전 조회 1,198
18년 전 조회 1,288
18년 전 조회 2,785
18년 전 조회 1,743
18년 전 조회 1,832
18년 전 조회 1,391
18년 전 조회 2,050
18년 전 조회 1,696
18년 전 조회 1,682
18년 전 조회 1,903