리자

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

· 18년 전 · 2939
<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,036
18년 전 조회 2,358
18년 전 조회 2,541
18년 전 조회 3,088
18년 전 조회 3,174
18년 전 조회 4,344
18년 전 조회 6,323
18년 전 조회 2,283
18년 전 조회 2,390
18년 전 조회 2,097
18년 전 조회 1,845
18년 전 조회 2,845
18년 전 조회 1,885
18년 전 조회 1,759
18년 전 조회 4,945
18년 전 조회 1,998
18년 전 조회 2,045
18년 전 조회 2,048
18년 전 조회 2,173
18년 전 조회 3,830
18년 전 조회 1,857
18년 전 조회 1,727
18년 전 조회 1,553
18년 전 조회 2,052
18년 전 조회 2,091
18년 전 조회 3,863
18년 전 조회 2,197
18년 전 조회 3,339
18년 전 조회 4,955
18년 전 조회 3,088
18년 전 조회 8,257
18년 전 조회 4,272
18년 전 조회 2,969
18년 전 조회 1,736
18년 전 조회 2,843
18년 전 조회 5,253
18년 전 조회 5,418
18년 전 조회 2,300
18년 전 조회 4,556
18년 전 조회 4,315
18년 전 조회 4,348
18년 전 조회 2,480
18년 전 조회 4,405
18년 전 조회 2,390
18년 전 조회 3,499
18년 전 조회 5,144
18년 전 조회 2,155
18년 전 조회 3,620
18년 전 조회 1,842
18년 전 조회 2,940
18년 전 조회 1,898
18년 전 조회 2,929
18년 전 조회 2,766
18년 전 조회 1,782
18년 전 조회 1,717
18년 전 조회 1,962
18년 전 조회 2,464
18년 전 조회 2,250
18년 전 조회 2,598
18년 전 조회 5,121
18년 전 조회 2,020
18년 전 조회 1,453
18년 전 조회 1,576
18년 전 조회 1,551
18년 전 조회 1,272
18년 전 조회 1,271
18년 전 조회 1,608
18년 전 조회 1,566
18년 전 조회 2,561
18년 전 조회 1,437
18년 전 조회 1,819
18년 전 조회 2,299
18년 전 조회 1,478
18년 전 조회 3,048
18년 전 조회 1,483
18년 전 조회 1,850
18년 전 조회 1,698
18년 전 조회 1,650
18년 전 조회 1,435
18년 전 조회 1,271
18년 전 조회 1,878
18년 전 조회 1,307
18년 전 조회 3,827
18년 전 조회 1,926
18년 전 조회 2,012
18년 전 조회 1,329
18년 전 조회 2,072
18년 전 조회 1,308
18년 전 조회 1,374
18년 전 조회 1,213
18년 전 조회 1,201
18년 전 조회 1,289
18년 전 조회 2,789
18년 전 조회 1,746
18년 전 조회 1,834
18년 전 조회 1,392
18년 전 조회 2,051
18년 전 조회 1,699
18년 전 조회 1,686
18년 전 조회 1,905