리자

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

· 18년 전 · 2929
<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,028
18년 전 조회 2,348
18년 전 조회 2,536
18년 전 조회 3,085
18년 전 조회 3,167
18년 전 조회 4,334
18년 전 조회 6,314
18년 전 조회 2,277
18년 전 조회 2,383
18년 전 조회 2,089
18년 전 조회 1,833
18년 전 조회 2,838
18년 전 조회 1,880
18년 전 조회 1,749
18년 전 조회 4,936
18년 전 조회 1,988
18년 전 조회 2,037
18년 전 조회 2,040
18년 전 조회 2,167
18년 전 조회 3,823
18년 전 조회 1,848
18년 전 조회 1,719
18년 전 조회 1,544
18년 전 조회 2,046
18년 전 조회 2,085
18년 전 조회 3,856
18년 전 조회 2,190
18년 전 조회 3,332
18년 전 조회 4,945
18년 전 조회 3,082
18년 전 조회 8,246
18년 전 조회 4,265
18년 전 조회 2,960
18년 전 조회 1,724
18년 전 조회 2,833
18년 전 조회 5,247
18년 전 조회 5,416
18년 전 조회 2,292
18년 전 조회 4,549
18년 전 조회 4,300
18년 전 조회 4,340
18년 전 조회 2,468
18년 전 조회 4,395
18년 전 조회 2,381
18년 전 조회 3,486
18년 전 조회 5,134
18년 전 조회 2,145
18년 전 조회 3,608
18년 전 조회 1,833
18년 전 조회 2,930
18년 전 조회 1,888
18년 전 조회 2,921
18년 전 조회 2,751
18년 전 조회 1,771
18년 전 조회 1,709
18년 전 조회 1,956
18년 전 조회 2,454
18년 전 조회 2,242
18년 전 조회 2,586
18년 전 조회 5,112
18년 전 조회 2,007
18년 전 조회 1,442
18년 전 조회 1,566
18년 전 조회 1,542
18년 전 조회 1,263
18년 전 조회 1,263
18년 전 조회 1,601
18년 전 조회 1,558
18년 전 조회 2,552
18년 전 조회 1,428
18년 전 조회 1,808
18년 전 조회 2,287
18년 전 조회 1,471
18년 전 조회 3,042
18년 전 조회 1,473
18년 전 조회 1,843
18년 전 조회 1,690
18년 전 조회 1,642
18년 전 조회 1,432
18년 전 조회 1,258
18년 전 조회 1,869
18년 전 조회 1,299
18년 전 조회 3,822
18년 전 조회 1,919
18년 전 조회 1,999
18년 전 조회 1,322
18년 전 조회 2,064
18년 전 조회 1,295
18년 전 조회 1,368
18년 전 조회 1,207
18년 전 조회 1,195
18년 전 조회 1,284
18년 전 조회 2,778
18년 전 조회 1,738
18년 전 조회 1,828
18년 전 조회 1,383
18년 전 조회 2,048
18년 전 조회 1,693
18년 전 조회 1,677
18년 전 조회 1,899