리자

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

· 18년 전 · 2944
<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,043
18년 전 조회 2,364
18년 전 조회 2,547
18년 전 조회 3,092
18년 전 조회 3,178
18년 전 조회 4,350
18년 전 조회 6,328
18년 전 조회 2,291
18년 전 조회 2,396
18년 전 조회 2,104
18년 전 조회 1,850
18년 전 조회 2,848
18년 전 조회 1,889
18년 전 조회 1,764
18년 전 조회 4,952
18년 전 조회 2,004
18년 전 조회 2,052
18년 전 조회 2,055
18년 전 조회 2,182
18년 전 조회 3,836
18년 전 조회 1,861
18년 전 조회 1,737
18년 전 조회 1,561
18년 전 조회 2,059
18년 전 조회 2,103
18년 전 조회 3,873
18년 전 조회 2,202
18년 전 조회 3,349
18년 전 조회 4,967
18년 전 조회 3,092
18년 전 조회 8,264
18년 전 조회 4,279
18년 전 조회 2,973
18년 전 조회 1,747
18년 전 조회 2,851
18년 전 조회 5,260
18년 전 조회 5,428
18년 전 조회 2,303
18년 전 조회 4,560
18년 전 조회 4,321
18년 전 조회 4,354
18년 전 조회 2,488
18년 전 조회 4,412
18년 전 조회 2,398
18년 전 조회 3,507
18년 전 조회 5,146
18년 전 조회 2,163
18년 전 조회 3,625
18년 전 조회 1,852
18년 전 조회 2,945
18년 전 조회 1,906
18년 전 조회 2,936
18년 전 조회 2,771
18년 전 조회 1,789
18년 전 조회 1,722
18년 전 조회 1,970
18년 전 조회 2,472
18년 전 조회 2,255
18년 전 조회 2,606
18년 전 조회 5,126
18년 전 조회 2,028
18년 전 조회 1,461
18년 전 조회 1,581
18년 전 조회 1,557
18년 전 조회 1,276
18년 전 조회 1,280
18년 전 조회 1,617
18년 전 조회 1,573
18년 전 조회 2,571
18년 전 조회 1,440
18년 전 조회 1,827
18년 전 조회 2,304
18년 전 조회 1,486
18년 전 조회 3,054
18년 전 조회 1,489
18년 전 조회 1,857
18년 전 조회 1,708
18년 전 조회 1,654
18년 전 조회 1,443
18년 전 조회 1,277
18년 전 조회 1,887
18년 전 조회 1,318
18년 전 조회 3,834
18년 전 조회 1,936
18년 전 조회 2,018
18년 전 조회 1,337
18년 전 조회 2,080
18년 전 조회 1,313
18년 전 조회 1,379
18년 전 조회 1,221
18년 전 조회 1,208
18년 전 조회 1,294
18년 전 조회 2,800
18년 전 조회 1,754
18년 전 조회 1,845
18년 전 조회 1,400
18년 전 조회 2,060
18년 전 조회 1,708
18년 전 조회 1,688
18년 전 조회 1,912