리자

동적테이블, 행추가, 열추가, 행삭제, 열삭제

· 17년 전 · 4249

옵션에 사용하기 위해 만들어본 코드입니다.

테스트 해본 코드이므로 별 이상은 없을것 같습니다.

동적테이블 정보가 필요하신 분들은 참고하세요.

IE, FF, 크롬에서 실행되는 것을 확이하였습니다.



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>

<BODY>

<form method=post action="a2_post.php">
<input type=button value="행추가" onclick="add_tr();">
<input type=button value="열추가" onclick="add_td();">
<input type=button value="행삭제" onclick="del_row();">
<input type=button value="열삭제" onclick="del_col();">
<table id='tbl' border=1>
    <thead id='thd'>
        <tr>
            <td>
                <input type=text name=opty size=4>
                <input type=text name=optx size=4>
            </td>
            <td>
                <input type=text name='optx_subj[]' size=10>
            </td>
        </tr>
    </thead>
    <tbody id='tbd'>
        <tr>
            <td><input type=text name='opty_subj[]' size=10></td>
            <td><input type=text name='opt[][]' size=10></td>
        </tr>
    </tbody>
</table>

<input type=submit>
</form>

<span id=msg></span>

<script>
var tbl = document.getElementById('tbl');
var thd = document.getElementById('thd');
var tbd = document.getElementById('tbd');
var tr = null;
var td = null;
var x=1, y=1;

function add_tr()
{
    // 행 제목 추가
    tr = document.createElement('tr');
    tbd.appendChild(tr);
    td = document.createElement('td');
    tr.appendChild(td);
    add_input('opty_subj[]');

    // 열의 갯수에 따라 추가된 행의 열 추가
    var thd_td = thd.getElementsByTagName('td');
    for (i=0; i<thd_td.length-1; i++)
    {
        td = document.createElement('td');
        tr.appendChild(td);
        add_input('opt[][]');
    }
}

function add_td()
{
    // 열 제목 추가
    var thd_tr = thd.getElementsByTagName('tr');
    td = document.createElement('td');
    thd_tr[0].appendChild(td);
    add_input('optx_subj[]');

    var tbd_tr = tbd.getElementsByTagName('tr');
    for (i=0; i<tbd_tr.length; i++) {
        //var td_tag = tr_tag[i].getElementsByTagName("td");
        td = document.createElement('td');
        tbd_tr[i].appendChild(td);
        add_input('opt[][]');
    }
}

function add_input(name)
{
    var inp = document.createElement('input');
    inp.setAttribute('type', 'text');
    inp.setAttribute('size', '10');
    inp.setAttribute('name', name);
    td.appendChild(inp);
}

function del_row()
{
    var tbd_tr = tbd.getElementsByTagName('tr');
    //document.getElementById('msg').innerHTML = tbd_tr.length;
    if (tbd_tr.length > 1)
        tbd.deleteRow(tbd_tr.length-1);
}

function del_col()
{
    var thd_tr = thd.getElementsByTagName('tr');
    var thd_td = thd.getElementsByTagName('td');
    //document.getElementById('msg').innerHTML = thd_td.length;
    if (thd_td.length > 2) {
        thd_tr[0].deleteCell(thd_td.length-1);

        var tbd_tr = tbd.getElementsByTagName('tr');
        for (i=0; i<tbd_tr.length; i++) {
            var tr_td = tbd_tr[i].getElementsByTagName('td');
            tbd_tr[i].deleteCell(tr_td.length-1);
        }
    }
}
</script>

</BODY>
</HTML>

[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 2,156
17년 전 조회 4,442
17년 전 조회 2,936
17년 전 조회 2,873
17년 전 조회 1,607
17년 전 조회 1,245
17년 전 조회 3,952
17년 전 조회 1,625
17년 전 조회 1,616
17년 전 조회 2,119
17년 전 조회 1,887
17년 전 조회 1,504
17년 전 조회 3,924
17년 전 조회 1,760
17년 전 조회 3,135
17년 전 조회 3,013
17년 전 조회 1,046
17년 전 조회 1,855
17년 전 조회 1,597
17년 전 조회 1,858
17년 전 조회 2,649
17년 전 조회 3,030
17년 전 조회 3,226
17년 전 조회 3,333
17년 전 조회 1,467
17년 전 조회 1,426
17년 전 조회 2,261
17년 전 조회 1,984
17년 전 조회 2,295
17년 전 조회 2,822
17년 전 조회 3,270
17년 전 조회 2,370
17년 전 조회 1,639
17년 전 조회 3,211
17년 전 조회 3,075
17년 전 조회 3,051
17년 전 조회 3,919
17년 전 조회 2,594
17년 전 조회 2,414
17년 전 조회 2,665
17년 전 조회 2,901
17년 전 조회 2,618
17년 전 조회 1,461
17년 전 조회 1,906
17년 전 조회 1,496
17년 전 조회 1,922
17년 전 조회 2,520
17년 전 조회 8,701
17년 전 조회 3,162
17년 전 조회 4,250
17년 전 조회 1,987
17년 전 조회 3,667
17년 전 조회 1,559
17년 전 조회 1,392
17년 전 조회 2,331
17년 전 조회 1,323
17년 전 조회 1,639
17년 전 조회 1,474
17년 전 조회 2,539
17년 전 조회 1,506
17년 전 조회 1,097
17년 전 조회 1,232
17년 전 조회 3,107
17년 전 조회 2,169
17년 전 조회 1,978
17년 전 조회 1,222
17년 전 조회 2,455
17년 전 조회 1,174
17년 전 조회 1,135
17년 전 조회 1,383
17년 전 조회 2,747
17년 전 조회 2,400
17년 전 조회 2,487
17년 전 조회 1,188
17년 전 조회 1,304
17년 전 조회 3,250
17년 전 조회 2,834
17년 전 조회 4,105
17년 전 조회 2,268
17년 전 조회 2,362
17년 전 조회 1,414
17년 전 조회 2,533
17년 전 조회 2,220
17년 전 조회 2,974
17년 전 조회 2,485
17년 전 조회 1,645
17년 전 조회 2,437
17년 전 조회 1,596
17년 전 조회 1,183
17년 전 조회 2,243
17년 전 조회 2,889
17년 전 조회 4,066
17년 전 조회 3,153
17년 전 조회 1,420
17년 전 조회 1,709
17년 전 조회 2,250
17년 전 조회 1,555
17년 전 조회 1,731
17년 전 조회 2,722
17년 전 조회 2,150
🐛 버그신고