리자

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

· 17년 전 · 4237

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

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

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

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,141
17년 전 조회 4,427
17년 전 조회 2,923
17년 전 조회 2,860
17년 전 조회 1,594
17년 전 조회 1,232
17년 전 조회 3,938
17년 전 조회 1,611
17년 전 조회 1,602
17년 전 조회 2,104
17년 전 조회 1,875
17년 전 조회 1,490
17년 전 조회 3,912
17년 전 조회 1,750
17년 전 조회 3,122
17년 전 조회 3,002
17년 전 조회 1,033
17년 전 조회 1,842
17년 전 조회 1,583
17년 전 조회 1,846
17년 전 조회 2,634
17년 전 조회 3,018
17년 전 조회 3,213
17년 전 조회 3,318
17년 전 조회 1,455
17년 전 조회 1,413
17년 전 조회 2,245
17년 전 조회 1,970
17년 전 조회 2,284
17년 전 조회 2,807
17년 전 조회 3,260
17년 전 조회 2,358
17년 전 조회 1,629
17년 전 조회 3,200
17년 전 조회 3,065
17년 전 조회 3,040
17년 전 조회 3,909
17년 전 조회 2,582
17년 전 조회 2,402
17년 전 조회 2,652
17년 전 조회 2,890
17년 전 조회 2,606
17년 전 조회 1,449
17년 전 조회 1,892
17년 전 조회 1,485
17년 전 조회 1,909
17년 전 조회 2,505
17년 전 조회 8,690
17년 전 조회 3,149
17년 전 조회 4,238
17년 전 조회 1,980
17년 전 조회 3,654
17년 전 조회 1,550
17년 전 조회 1,382
17년 전 조회 2,318
17년 전 조회 1,311
17년 전 조회 1,624
17년 전 조회 1,456
17년 전 조회 2,524
17년 전 조회 1,494
17년 전 조회 1,085
17년 전 조회 1,220
17년 전 조회 3,095
17년 전 조회 2,159
17년 전 조회 1,967
17년 전 조회 1,210
17년 전 조회 2,446
17년 전 조회 1,167
17년 전 조회 1,125
17년 전 조회 1,367
17년 전 조회 2,733
17년 전 조회 2,389
17년 전 조회 2,474
17년 전 조회 1,175
17년 전 조회 1,290
17년 전 조회 3,240
17년 전 조회 2,825
17년 전 조회 4,093
17년 전 조회 2,254
17년 전 조회 2,348
17년 전 조회 1,398
17년 전 조회 2,517
17년 전 조회 2,205
17년 전 조회 2,964
17년 전 조회 2,473
17년 전 조회 1,635
17년 전 조회 2,427
17년 전 조회 1,586
17년 전 조회 1,173
17년 전 조회 2,233
17년 전 조회 2,878
17년 전 조회 4,055
17년 전 조회 3,143
17년 전 조회 1,411
17년 전 조회 1,706
17년 전 조회 2,241
17년 전 조회 1,547
17년 전 조회 1,719
17년 전 조회 2,713
17년 전 조회 2,136
🐛 버그신고