리자

jQuery 동적테이블

· 2008-11-12 (수) 20:52:27 · 9924 · 4

불당님이 jQuery 하시길래 몇일 살펴보았는데 상당히 만족스럽네요.

처음 만들어보는거라 코드가 지저분합니다.

jQuery 잘 아시는 분들은 수정 후 좀 알려주십시오.



        <input type=button value='행추가' id='add-row'>
        <input type=button value='열추가' id='add-col'>
        <input type=button value='행삭제' id='del-row'>
        <input type=button value='열삭제' id='del-col'>
        <table id='stock_table' border=0>
            <thead id='stock_thead'>
                <tr>
                    <td>
                        <input type=text name=it_opty_subj size=4 class=ed value='<?=$it[it_opty_subj]?>'>
                        <input type=text name=it_optx_subj size=4 class=ed value='<?=$it[it_optx_subj]?>'>
                    </td>
                    <td>
                        <input type=text name='optx_subj[0]' size=5 class=ed>
                    </td>
                </tr>
            </thead>
            <tbody id='stock_tbody'>
                <tr>
                    <td><input type=text name='opty_subj[0]' size=10 class=ed></td>
                    <td><input type=text name='opt[0][0]' size=5 class=ed></td>
                </tr>
            </tbody>
        </table>


... 중략 ...


<script>
var stock_x = 0;
var stock_y = 0;

$(document).ready(function() {
    // 행추가
    $('#add-row').click(function() {
        stock_y++;

        var s = "<tr>";
        s += "<td><input type=text name='opty_subj["+stock_y+"]' size=10 class=ed></td>"; // 행 제목 추가
        var len = $('#stock_thead td').length; // 열의 갯수에 따라 추가된 행의 열 추가
        for (i=0; i<len-1; i++) {
            s += "<td><input type=text name='opt["+stock_y+"]["+i+"]' size=5 class=ed></td>";
        }
        s += "</tr>";
        $('#stock_tbody').append(s);
    });

    // 열추가
    $('#add-col').click(function() {
        stock_x++;
        $('#stock_thead tr').append("<td><input type=text name='optx_subj["+stock_x+"]' size=5 class=ed></td>");
        $('#stock_tbody tr').each(function(index) {
            $(this).append("<td><input type=text name='opt["+index+"]["+stock_x+"]' size=5 class=ed></td>");
        });
    });

    // 행삭제
    $('#del-row').click(function() {
        if (stock_y > 0) {
            $('#stock_tbody tr:last').remove();
            stock_y--;
        }

    });

    // 열삭제
    $('#del-col').click(function() {
        if (stock_x > 0) {
            $('#stock_thead td:last').remove();
            $('#stock_tbody tr').each(function(index) {
                $('td:last', this).remove();
            });
            stock_x--;
        }
    });
});
</script>

[이 게시물은 관리자님에 의해 2011-10-31 16:55:28 jQuery에서 이동 됨]
|

댓글 4개

저도 공부해보고싶내요 화이팅용~
2008-11-14 (금) 11:10:10
jQuery를 이용해서 가장먼저 했으면 하는게 view.skin.php의 하단에 있는...

<script language="JavaScript" src="<?="$g4[path]/js/board.js"?>"></script>
<script language="JavaScript">
window.onload=function() {
resizeBoardImage(<?=(int)$board[bo_image_width]?>);
drawFont();
}
</script>
2008-11-14 (금) 14:39:52
댓글 부분도 jQuery ajax 이용해 처리되었으면 좋겠습니다.! ㅋ

차후에는 전부 jQuery 로 ~
앞으로 대세는 jQuery 인가...
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
10-09-25 조회 2,703
10-09-19 조회 2,740
10-09-15 조회 2,741
10-09-15 조회 4,147
10-09-15 조회 3,366
10-09-15 조회 2,476
10-09-07 조회 3,590
10-08-27 조회 4,048
10-06-11 조회 4,204
10-05-31 조회 2,454
10-02-27 조회 4,988
10-02-09 조회 3,733
09-10-10 조회 7,324
09-03-19 조회 3,167
09-02-09 조회 3,445
09-02-09 조회 4,517
08-11-01 조회 2,897
08-09-29 조회 4,550
08-09-26 조회 3,507
08-09-26 조회 3,585
08-09-26 조회 2,717
08-09-26 조회 3,763
08-09-26 조회 3,484
08-09-26 조회 4,248
08-09-18 조회 3,559
08-09-09 조회 3,213
08-08-28 조회 2,753
08-07-06 조회 3,531
08-05-21 조회 4,684
08-05-13 조회 4,524
08-04-17 조회 4,898
08-02-19 조회 3,527
08-01-18 조회 3,831
08-01-10 조회 3,798
07-10-22 조회 3,639
07-10-09 조회 4,262
07-10-03 조회 3,495
07-07-06 조회 4,204
07-07-06 조회 4,417
07-07-06 조회 4,029
07-06-28 조회 3,553
07-06-05 조회 3,556
07-06-05 조회 4,099
07-05-30 조회 3,269
07-05-02 조회 3,678
07-04-15 조회 5,081
07-04-11 조회 3,618
07-04-05 조회 3,907
07-03-31 조회 3,141
07-03-31 조회 4,116
07-03-30 조회 3,720
07-03-24 조회 3,996
07-03-22 조회 3,649
07-03-12 조회 4,399
07-02-16 조회 3,255
07-02-14 조회 5,154
07-02-10 조회 3,981
07-02-09 조회 4,369
07-01-19 조회 4,030
07-01-16 조회 4,957
06-12-16 조회 5,823
06-11-30 조회 3,579
06-11-25 조회 3,680
06-10-15 조회 5,050
06-09-26 조회 5,295
06-09-26 조회 5,413
06-09-22 조회 4,247
06-09-21 조회 3,532
06-09-21 조회 3,616
06-09-02 조회 3,472
06-08-08 조회 5,105
06-07-20 조회 3,703
06-07-17 조회 3,336
06-07-13 조회 4,156
06-07-11 조회 3,452
06-07-11 조회 3,445
06-07-11 조회 3,820
06-06-29 조회 6,035
06-06-19 조회 6,437
06-06-02 조회 3,489
06-05-24 조회 4,979
06-05-14 조회 7,755
06-05-08 조회 3,867
06-02-02 조회 5,443
05-12-16 조회 4,490
05-12-05 조회 5,141
05-06-28 조회 4,091
05-04-11 조회 4,043
05-04-11 조회 4,236
05-04-11 조회 3,302
05-03-13 조회 3,207
05-03-12 조회 4,289
04-12-08 조회 7,766
04-12-01 조회 5,168
04-11-28 조회 3,324
04-11-28 조회 3,170
04-08-05 조회 5,597
04-08-05 조회 4,941
04-08-05 조회 5,538