리자

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

· 18년 전 · 2907
<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,004
18년 전 조회 2,323
18년 전 조회 2,513
18년 전 조회 3,058
18년 전 조회 3,150
18년 전 조회 4,315
18년 전 조회 6,295
18년 전 조회 2,250
18년 전 조회 2,358
18년 전 조회 2,067
18년 전 조회 1,815
18년 전 조회 2,817
18년 전 조회 1,852
18년 전 조회 1,727
18년 전 조회 4,914
18년 전 조회 1,965
18년 전 조회 2,011
18년 전 조회 2,014
18년 전 조회 2,143
18년 전 조회 3,802
18년 전 조회 1,816
18년 전 조회 1,697
18년 전 조회 1,525
18년 전 조회 2,028
18년 전 조회 2,064
18년 전 조회 3,837
18년 전 조회 2,165
18년 전 조회 3,305
18년 전 조회 4,925
18년 전 조회 3,057
18년 전 조회 8,228
18년 전 조회 4,244
18년 전 조회 2,932
18년 전 조회 1,698
18년 전 조회 2,809
18년 전 조회 5,220
18년 전 조회 5,390
18년 전 조회 2,270
18년 전 조회 4,527
18년 전 조회 4,274
18년 전 조회 4,325
18년 전 조회 2,448
18년 전 조회 4,379
18년 전 조회 2,360
18년 전 조회 3,461
18년 전 조회 5,104
18년 전 조회 2,130
18년 전 조회 3,587
18년 전 조회 1,818
18년 전 조회 2,908
18년 전 조회 1,857
18년 전 조회 2,898
18년 전 조회 2,730
18년 전 조회 1,747
18년 전 조회 1,685
18년 전 조회 1,935
18년 전 조회 2,431
18년 전 조회 2,218
18년 전 조회 2,559
18년 전 조회 5,079
18년 전 조회 1,988
18년 전 조회 1,424
18년 전 조회 1,546
18년 전 조회 1,519
18년 전 조회 1,239
18년 전 조회 1,245
18년 전 조회 1,587
18년 전 조회 1,539
18년 전 조회 2,532
18년 전 조회 1,406
18년 전 조회 1,787
18년 전 조회 2,265
18년 전 조회 1,450
18년 전 조회 3,010
18년 전 조회 1,462
18년 전 조회 1,829
18년 전 조회 1,672
18년 전 조회 1,622
18년 전 조회 1,414
18년 전 조회 1,231
18년 전 조회 1,845
18년 전 조회 1,276
18년 전 조회 3,798
18년 전 조회 1,897
18년 전 조회 1,976
18년 전 조회 1,298
18년 전 조회 2,045
18년 전 조회 1,276
18년 전 조회 1,350
18년 전 조회 1,187
18년 전 조회 1,176
18년 전 조회 1,260
18년 전 조회 2,762
18년 전 조회 1,724
18년 전 조회 1,812
18년 전 조회 1,363
18년 전 조회 2,036
18년 전 조회 1,678
18년 전 조회 1,655
18년 전 조회 1,881