리자

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

· 18년 전 · 2915
<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,015
18년 전 조회 2,334
18년 전 조회 2,518
18년 전 조회 3,067
18년 전 조회 3,154
18년 전 조회 4,323
18년 전 조회 6,300
18년 전 조회 2,255
18년 전 조회 2,369
18년 전 조회 2,079
18년 전 조회 1,818
18년 전 조회 2,824
18년 전 조회 1,860
18년 전 조회 1,734
18년 전 조회 4,928
18년 전 조회 1,970
18년 전 조회 2,014
18년 전 조회 2,025
18년 전 조회 2,149
18년 전 조회 3,808
18년 전 조회 1,828
18년 전 조회 1,703
18년 전 조회 1,531
18년 전 조회 2,036
18년 전 조회 2,073
18년 전 조회 3,845
18년 전 조회 2,177
18년 전 조회 3,317
18년 전 조회 4,933
18년 전 조회 3,062
18년 전 조회 8,233
18년 전 조회 4,253
18년 전 조회 2,943
18년 전 조회 1,707
18년 전 조회 2,817
18년 전 조회 5,230
18년 전 조회 5,400
18년 전 조회 2,278
18년 전 조회 4,534
18년 전 조회 4,283
18년 전 조회 4,327
18년 전 조회 2,454
18년 전 조회 4,385
18년 전 조회 2,368
18년 전 조회 3,472
18년 전 조회 5,114
18년 전 조회 2,135
18년 전 조회 3,594
18년 전 조회 1,823
18년 전 조회 2,916
18년 전 조회 1,866
18년 전 조회 2,907
18년 전 조회 2,739
18년 전 조회 1,756
18년 전 조회 1,693
18년 전 조회 1,943
18년 전 조회 2,441
18년 전 조회 2,226
18년 전 조회 2,570
18년 전 조회 5,090
18년 전 조회 1,996
18년 전 조회 1,430
18년 전 조회 1,555
18년 전 조회 1,525
18년 전 조회 1,249
18년 전 조회 1,251
18년 전 조회 1,593
18년 전 조회 1,546
18년 전 조회 2,542
18년 전 조회 1,416
18년 전 조회 1,794
18년 전 조회 2,272
18년 전 조회 1,457
18년 전 조회 3,022
18년 전 조회 1,464
18년 전 조회 1,830
18년 전 조회 1,680
18년 전 조회 1,627
18년 전 조회 1,419
18년 전 조회 1,238
18년 전 조회 1,851
18년 전 조회 1,284
18년 전 조회 3,806
18년 전 조회 1,906
18년 전 조회 1,985
18년 전 조회 1,303
18년 전 조회 2,052
18년 전 조회 1,283
18년 전 조회 1,359
18년 전 조회 1,198
18년 전 조회 1,182
18년 전 조회 1,268
18년 전 조회 2,769
18년 전 조회 1,731
18년 전 조회 1,816
18년 전 조회 1,371
18년 전 조회 2,039
18년 전 조회 1,679
18년 전 조회 1,664
18년 전 조회 1,883