리자

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

· 18년 전 · 2937
<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,035
18년 전 조회 2,356
18년 전 조회 2,540
18년 전 조회 3,086
18년 전 조회 3,171
18년 전 조회 4,342
18년 전 조회 6,320
18년 전 조회 2,281
18년 전 조회 2,389
18년 전 조회 2,095
18년 전 조회 1,842
18년 전 조회 2,843
18년 전 조회 1,884
18년 전 조회 1,757
18년 전 조회 4,943
18년 전 조회 1,994
18년 전 조회 2,043
18년 전 조회 2,045
18년 전 조회 2,171
18년 전 조회 3,829
18년 전 조회 1,855
18년 전 조회 1,726
18년 전 조회 1,552
18년 전 조회 2,051
18년 전 조회 2,090
18년 전 조회 3,860
18년 전 조회 2,196
18년 전 조회 3,339
18년 전 조회 4,952
18년 전 조회 3,087
18년 전 조회 8,257
18년 전 조회 4,271
18년 전 조회 2,968
18년 전 조회 1,731
18년 전 조회 2,842
18년 전 조회 5,250
18년 전 조회 5,417
18년 전 조회 2,299
18년 전 조회 4,555
18년 전 조회 4,312
18년 전 조회 4,345
18년 전 조회 2,478
18년 전 조회 4,402
18년 전 조회 2,387
18년 전 조회 3,495
18년 전 조회 5,143
18년 전 조회 2,151
18년 전 조회 3,619
18년 전 조회 1,841
18년 전 조회 2,938
18년 전 조회 1,895
18년 전 조회 2,926
18년 전 조회 2,762
18년 전 조회 1,781
18년 전 조회 1,715
18년 전 조회 1,961
18년 전 조회 2,463
18년 전 조회 2,249
18년 전 조회 2,596
18년 전 조회 5,120
18년 전 조회 2,019
18년 전 조회 1,449
18년 전 조회 1,575
18년 전 조회 1,550
18년 전 조회 1,270
18년 전 조회 1,269
18년 전 조회 1,607
18년 전 조회 1,565
18년 전 조회 2,560
18년 전 조회 1,432
18년 전 조회 1,817
18년 전 조회 2,298
18년 전 조회 1,475
18년 전 조회 3,047
18년 전 조회 1,481
18년 전 조회 1,849
18년 전 조회 1,696
18년 전 조회 1,646
18년 전 조회 1,434
18년 전 조회 1,268
18년 전 조회 1,875
18년 전 조회 1,305
18년 전 조회 3,825
18년 전 조회 1,924
18년 전 조회 2,009
18년 전 조회 1,328
18년 전 조회 2,070
18년 전 조회 1,304
18년 전 조회 1,372
18년 전 조회 1,210
18년 전 조회 1,198
18년 전 조회 1,288
18년 전 조회 2,785
18년 전 조회 1,744
18년 전 조회 1,832
18년 전 조회 1,391
18년 전 조회 2,050
18년 전 조회 1,696
18년 전 조회 1,682
18년 전 조회 1,904