리자

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

· 18년 전 · 2883
<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년 전 조회 2,979
18년 전 조회 2,296
18년 전 조회 2,489
18년 전 조회 3,038
18년 전 조회 3,124
18년 전 조회 4,284
18년 전 조회 6,263
18년 전 조회 2,223
18년 전 조회 2,333
18년 전 조회 2,042
18년 전 조회 1,791
18년 전 조회 2,786
18년 전 조회 1,832
18년 전 조회 1,702
18년 전 조회 4,884
18년 전 조회 1,942
18년 전 조회 1,985
18년 전 조회 1,988
18년 전 조회 2,111
18년 전 조회 3,779
18년 전 조회 1,792
18년 전 조회 1,673
18년 전 조회 1,503
18년 전 조회 1,998
18년 전 조회 2,046
18년 전 조회 3,805
18년 전 조회 2,140
18년 전 조회 3,282
18년 전 조회 4,901
18년 전 조회 3,029
18년 전 조회 8,204
18년 전 조회 4,214
18년 전 조회 2,901
18년 전 조회 1,675
18년 전 조회 2,780
18년 전 조회 5,194
18년 전 조회 5,369
18년 전 조회 2,242
18년 전 조회 4,498
18년 전 조회 4,247
18년 전 조회 4,303
18년 전 조회 2,426
18년 전 조회 4,351
18년 전 조회 2,336
18년 전 조회 3,436
18년 전 조회 5,083
18년 전 조회 2,110
18년 전 조회 3,564
18년 전 조회 1,793
18년 전 조회 2,884
18년 전 조회 1,831
18년 전 조회 2,875
18년 전 조회 2,709
18년 전 조회 1,722
18년 전 조회 1,654
18년 전 조회 1,907
18년 전 조회 2,413
18년 전 조회 2,190
18년 전 조회 2,531
18년 전 조회 5,056
18년 전 조회 1,971
18년 전 조회 1,403
18년 전 조회 1,530
18년 전 조회 1,495
18년 전 조회 1,221
18년 전 조회 1,225
18년 전 조회 1,562
18년 전 조회 1,516
18년 전 조회 2,510
18년 전 조회 1,386
18년 전 조회 1,770
18년 전 조회 2,236
18년 전 조회 1,426
18년 전 조회 2,991
18년 전 조회 1,433
18년 전 조회 1,804
18년 전 조회 1,649
18년 전 조회 1,598
18년 전 조회 1,387
18년 전 조회 1,213
18년 전 조회 1,818
18년 전 조회 1,255
18년 전 조회 3,771
18년 전 조회 1,876
18년 전 조회 1,950
18년 전 조회 1,275
18년 전 조회 2,012
18년 전 조회 1,249
18년 전 조회 1,325
18년 전 조회 1,171
18년 전 조회 1,159
18년 전 조회 1,243
18년 전 조회 2,736
18년 전 조회 1,694
18년 전 조회 1,789
18년 전 조회 1,338
18년 전 조회 2,013
18년 전 조회 1,652
18년 전 조회 1,629
18년 전 조회 1,847