리자

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

· 18년 전 · 2942
<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,041
18년 전 조회 2,364
18년 전 조회 2,545
18년 전 조회 3,091
18년 전 조회 3,178
18년 전 조회 4,350
18년 전 조회 6,328
18년 전 조회 2,290
18년 전 조회 2,395
18년 전 조회 2,104
18년 전 조회 1,850
18년 전 조회 2,848
18년 전 조회 1,889
18년 전 조회 1,763
18년 전 조회 4,951
18년 전 조회 2,004
18년 전 조회 2,051
18년 전 조회 2,055
18년 전 조회 2,181
18년 전 조회 3,836
18년 전 조회 1,861
18년 전 조회 1,734
18년 전 조회 1,560
18년 전 조회 2,057
18년 전 조회 2,101
18년 전 조회 3,870
18년 전 조회 2,200
18년 전 조회 3,349
18년 전 조회 4,965
18년 전 조회 3,092
18년 전 조회 8,263
18년 전 조회 4,278
18년 전 조회 2,972
18년 전 조회 1,747
18년 전 조회 2,849
18년 전 조회 5,258
18년 전 조회 5,425
18년 전 조회 2,303
18년 전 조회 4,560
18년 전 조회 4,319
18년 전 조회 4,353
18년 전 조회 2,485
18년 전 조회 4,412
18년 전 조회 2,397
18년 전 조회 3,507
18년 전 조회 5,146
18년 전 조회 2,163
18년 전 조회 3,625
18년 전 조회 1,850
18년 전 조회 2,943
18년 전 조회 1,904
18년 전 조회 2,934
18년 전 조회 2,771
18년 전 조회 1,789
18년 전 조회 1,722
18년 전 조회 1,967
18년 전 조회 2,471
18년 전 조회 2,255
18년 전 조회 2,605
18년 전 조회 5,124
18년 전 조회 2,025
18년 전 조회 1,461
18년 전 조회 1,578
18년 전 조회 1,556
18년 전 조회 1,275
18년 전 조회 1,278
18년 전 조회 1,616
18년 전 조회 1,571
18년 전 조회 2,568
18년 전 조회 1,439
18년 전 조회 1,827
18년 전 조회 2,303
18년 전 조회 1,486
18년 전 조회 3,053
18년 전 조회 1,489
18년 전 조회 1,855
18년 전 조회 1,706
18년 전 조회 1,653
18년 전 조회 1,442
18년 전 조회 1,277
18년 전 조회 1,884
18년 전 조회 1,318
18년 전 조회 3,833
18년 전 조회 1,933
18년 전 조회 2,017
18년 전 조회 1,336
18년 전 조회 2,078
18년 전 조회 1,311
18년 전 조회 1,379
18년 전 조회 1,219
18년 전 조회 1,205
18년 전 조회 1,293
18년 전 조회 2,797
18년 전 조회 1,754
18년 전 조회 1,841
18년 전 조회 1,399
18년 전 조회 2,058
18년 전 조회 1,707
18년 전 조회 1,688
18년 전 조회 1,911