리자

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

· 18년 전 · 3013
<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에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
18년 전 조회 3,121
18년 전 조회 2,435
18년 전 조회 2,617
18년 전 조회 3,165
18년 전 조회 3,253
18년 전 조회 4,425
18년 전 조회 6,405
18년 전 조회 2,359
18년 전 조회 2,469
18년 전 조회 2,172
18년 전 조회 1,929
18년 전 조회 2,896
18년 전 조회 1,960
18년 전 조회 1,828
18년 전 조회 5,020
18년 전 조회 2,076
18년 전 조회 2,119
18년 전 조회 2,117
18년 전 조회 2,250
18년 전 조회 3,903
18년 전 조회 1,934
18년 전 조회 1,801
18년 전 조회 1,623
18년 전 조회 2,130
18년 전 조회 2,166
18년 전 조회 3,940
18년 전 조회 2,258
18년 전 조회 3,415
18년 전 조회 5,030
18년 전 조회 3,165
18년 전 조회 8,351
18년 전 조회 4,344
18년 전 조회 3,048
18년 전 조회 1,817
18년 전 조회 2,916
18년 전 조회 5,330
18년 전 조회 5,498
18년 전 조회 2,373
18년 전 조회 4,632
18년 전 조회 4,397
18년 전 조회 4,427
18년 전 조회 2,556
18년 전 조회 4,479
18년 전 조회 2,451
18년 전 조회 3,566
18년 전 조회 5,209
18년 전 조회 2,239
18년 전 조회 3,693
18년 전 조회 1,915
18년 전 조회 3,014
18년 전 조회 1,960
18년 전 조회 2,995
18년 전 조회 2,825
18년 전 조회 1,843
18년 전 조회 1,793
18년 전 조회 2,032
18년 전 조회 2,543
18년 전 조회 2,326
18년 전 조회 2,673
18년 전 조회 5,188
18년 전 조회 2,093
18년 전 조회 1,520
18년 전 조회 1,654
18년 전 조회 1,610
18년 전 조회 1,341
18년 전 조회 1,343
18년 전 조회 1,685
18년 전 조회 1,632
18년 전 조회 2,622
18년 전 조회 1,506
18년 전 조회 1,883
18년 전 조회 2,365
18년 전 조회 1,554
18년 전 조회 3,109
18년 전 조회 1,543
18년 전 조회 1,923
18년 전 조회 1,776
18년 전 조회 1,713
18년 전 조회 1,519
18년 전 조회 1,349
18년 전 조회 1,958
18년 전 조회 1,381
18년 전 조회 3,911
18년 전 조회 1,993
18년 전 조회 2,081
18년 전 조회 1,402
18년 전 조회 2,148
18년 전 조회 1,384
18년 전 조회 1,448
18년 전 조회 1,289
18년 전 조회 1,282
18년 전 조회 1,362
18년 전 조회 2,863
18년 전 조회 1,823
18년 전 조회 1,920
18년 전 조회 1,473
18년 전 조회 2,138
18년 전 조회 1,786
18년 전 조회 1,762
18년 전 조회 1,970