리자

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

· 17년 전 · 4241

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

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

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

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,147
17년 전 조회 4,429
17년 전 조회 2,929
17년 전 조회 2,864
17년 전 조회 1,598
17년 전 조회 1,239
17년 전 조회 3,942
17년 전 조회 1,615
17년 전 조회 1,610
17년 전 조회 2,107
17년 전 조회 1,879
17년 전 조회 1,494
17년 전 조회 3,918
17년 전 조회 1,754
17년 전 조회 3,129
17년 전 조회 3,008
17년 전 조회 1,038
17년 전 조회 1,846
17년 전 조회 1,590
17년 전 조회 1,851
17년 전 조회 2,639
17년 전 조회 3,022
17년 전 조회 3,215
17년 전 조회 3,322
17년 전 조회 1,460
17년 전 조회 1,416
17년 전 조회 2,251
17년 전 조회 1,973
17년 전 조회 2,288
17년 전 조회 2,814
17년 전 조회 3,262
17년 전 조회 2,362
17년 전 조회 1,630
17년 전 조회 3,205
17년 전 조회 3,070
17년 전 조회 3,044
17년 전 조회 3,914
17년 전 조회 2,585
17년 전 조회 2,404
17년 전 조회 2,654
17년 전 조회 2,894
17년 전 조회 2,610
17년 전 조회 1,451
17년 전 조회 1,895
17년 전 조회 1,487
17년 전 조회 1,910
17년 전 조회 2,509
17년 전 조회 8,694
17년 전 조회 3,152
17년 전 조회 4,242
17년 전 조회 1,982
17년 전 조회 3,660
17년 전 조회 1,552
17년 전 조회 1,385
17년 전 조회 2,321
17년 전 조회 1,313
17년 전 조회 1,629
17년 전 조회 1,460
17년 전 조회 2,530
17년 전 조회 1,497
17년 전 조회 1,088
17년 전 조회 1,224
17년 전 조회 3,098
17년 전 조회 2,162
17년 전 조회 1,969
17년 전 조회 1,215
17년 전 조회 2,448
17년 전 조회 1,168
17년 전 조회 1,128
17년 전 조회 1,374
17년 전 조회 2,738
17년 전 조회 2,393
17년 전 조회 2,479
17년 전 조회 1,177
17년 전 조회 1,296
17년 전 조회 3,244
17년 전 조회 2,828
17년 전 조회 4,096
17년 전 조회 2,259
17년 전 조회 2,354
17년 전 조회 1,403
17년 전 조회 2,522
17년 전 조회 2,208
17년 전 조회 2,967
17년 전 조회 2,477
17년 전 조회 1,639
17년 전 조회 2,432
17년 전 조회 1,589
17년 전 조회 1,176
17년 전 조회 2,236
17년 전 조회 2,882
17년 전 조회 4,058
17년 전 조회 3,147
17년 전 조회 1,415
17년 전 조회 1,706
17년 전 조회 2,245
17년 전 조회 1,548
17년 전 조회 1,723
17년 전 조회 2,717
17년 전 조회 2,141
🐛 버그신고