리자

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

· 18년 전 · 2905
<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,003
18년 전 조회 2,323
18년 전 조회 2,513
18년 전 조회 3,058
18년 전 조회 3,149
18년 전 조회 4,314
18년 전 조회 6,292
18년 전 조회 2,249
18년 전 조회 2,358
18년 전 조회 2,067
18년 전 조회 1,815
18년 전 조회 2,816
18년 전 조회 1,852
18년 전 조회 1,727
18년 전 조회 4,913
18년 전 조회 1,965
18년 전 조회 2,010
18년 전 조회 2,013
18년 전 조회 2,142
18년 전 조회 3,802
18년 전 조회 1,814
18년 전 조회 1,697
18년 전 조회 1,525
18년 전 조회 2,027
18년 전 조회 2,064
18년 전 조회 3,837
18년 전 조회 2,165
18년 전 조회 3,304
18년 전 조회 4,925
18년 전 조회 3,057
18년 전 조회 8,228
18년 전 조회 4,242
18년 전 조회 2,930
18년 전 조회 1,696
18년 전 조회 2,808
18년 전 조회 5,219
18년 전 조회 5,390
18년 전 조회 2,270
18년 전 조회 4,527
18년 전 조회 4,274
18년 전 조회 4,325
18년 전 조회 2,448
18년 전 조회 4,378
18년 전 조회 2,358
18년 전 조회 3,461
18년 전 조회 5,103
18년 전 조회 2,130
18년 전 조회 3,585
18년 전 조회 1,817
18년 전 조회 2,906
18년 전 조회 1,856
18년 전 조회 2,898
18년 전 조회 2,729
18년 전 조회 1,746
18년 전 조회 1,685
18년 전 조회 1,932
18년 전 조회 2,431
18년 전 조회 2,218
18년 전 조회 2,559
18년 전 조회 5,076
18년 전 조회 1,988
18년 전 조회 1,424
18년 전 조회 1,546
18년 전 조회 1,518
18년 전 조회 1,238
18년 전 조회 1,243
18년 전 조회 1,587
18년 전 조회 1,539
18년 전 조회 2,531
18년 전 조회 1,406
18년 전 조회 1,787
18년 전 조회 2,264
18년 전 조회 1,450
18년 전 조회 3,010
18년 전 조회 1,462
18년 전 조회 1,828
18년 전 조회 1,670
18년 전 조회 1,621
18년 전 조회 1,414
18년 전 조회 1,230
18년 전 조회 1,842
18년 전 조회 1,276
18년 전 조회 3,796
18년 전 조회 1,897
18년 전 조회 1,975
18년 전 조회 1,298
18년 전 조회 2,045
18년 전 조회 1,276
18년 전 조회 1,350
18년 전 조회 1,186
18년 전 조회 1,176
18년 전 조회 1,260
18년 전 조회 2,762
18년 전 조회 1,723
18년 전 조회 1,812
18년 전 조회 1,362
18년 전 조회 2,036
18년 전 조회 1,678
18년 전 조회 1,654
18년 전 조회 1,879