jquery를 이용한 체크박스 부분에 관련된 내용이 없어서 간단하게 한번 만들어보았습니다.
저보다 더 좋은 내용이 있으면 코멘트 달아주세요
<html>
<head>
<title></title>
<script type="text/javascript" src="./script/jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#selectall").click(selectAll);
$("#save").click(save);
});
function selectAll()
{
var checked = $("#selectall").attr("checked");
$(".box").each(function(){
var subChecked = $(this).attr("checked");
if (subChecked != checked)
$(this).click();
});
}
function save()
{
var result = "";
$(".box:checked").each(function() {
$("#"+$(this).val()).remove();
result += $(this).val();
//AJAX로 넘겨줄때는
//.get('XXX.php',{SelType:$(this).val()});
});
alert(result);
}
</script>
</head>
<body>
<table>
<tr><td><input type="checkbox" id=selectall></td><td>1전체선택</td></tr>
<tr><td><input type="checkbox" name="chkbox" value="1" class="box"></td><td>1</td></tr>
<tr><td><input type="checkbox" name="chkbox" value="2" class="box"></td><td>1</td></tr>
<tr><td><input type="checkbox" name="chkbox" value="3" class="box"></td><td>1</td></tr>
<tr><td><input type="checkbox" name="chkbox" value="4" class="box"></td><td>1</td></tr>
<tr><td><input type="checkbox" name="chkbox" value="5" class="box"></td><td>1</td></tr>
<tr><td><input type="button" value="저장" id="save"></td></tr>
</table>
</body>
</html>
댓글 4개
{
$("INPUT[@name=" + name + "][type='checkbox']").attr('checked', $('#' + id).is(':checked'));
}
<input type="checkbox" name="checkAll" id="checkAll" onclick="jqCheckAll( this.id, '체크할 체그박스 Name' )" class="ckbox" />
<input type="checkbox" name="체크할 체그박스 Name" value="Y" />
<input type="checkbox" name="체크할 체그박스 Name" value="Y" />
<input type="checkbox" name="체크할 체그박스 Name" value="Y" />
<input type="checkbox" name="체크할 체그박스 Name" value="Y" />
<input type="checkbox" name="체크할 체그박스 Name" value="Y" />
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 655 | ||
| 7629 |
|
10년 전 | 2396 | |
| 7628 | 10년 전 | 795 | ||
| 7627 |
|
10년 전 | 1037 | |
| 7626 |
|
10년 전 | 1795 | |
| 7625 | 10년 전 | 716 | ||
| 7624 | 10년 전 | 733 | ||
| 7623 |
|
10년 전 | 3099 | |
| 7622 | 10년 전 | 734 | ||
| 7621 |
leeleeleelee
|
10년 전 | 590 | |
| 7620 | 10년 전 | 541 | ||
| 7619 | 10년 전 | 495 | ||
| 7618 | 10년 전 | 1032 | ||
| 7617 | 10년 전 | 729 | ||
| 7616 | 10년 전 | 658 | ||
| 7615 | 10년 전 | 729 | ||
| 7614 | 10년 전 | 1270 | ||
| 7613 |
|
10년 전 | 2086 | |
| 7612 | 10년 전 | 1153 | ||
| 7611 | 10년 전 | 1421 | ||
| 7610 |
|
10년 전 | 1906 | |
| 7609 |
|
10년 전 | 1356 | |
| 7608 |
mwdkim
|
10년 전 | 1138 | |
| 7607 |
|
10년 전 | 1057 | |
| 7606 |
mwdkim
|
10년 전 | 3938 | |
| 7605 | 10년 전 | 695 | ||
| 7604 | 10년 전 | 1032 | ||
| 7603 | 10년 전 | 1656 | ||
| 7602 |
|
10년 전 | 1081 | |
| 7601 |
AniNest
|
10년 전 | 2796 | |
| 7600 |
port443
|
10년 전 | 1039 | |
| 7599 | 10년 전 | 949 | ||
| 7598 | 10년 전 | 1025 | ||
| 7597 | 10년 전 | 4579 | ||
| 7596 |
SeungYeon
|
10년 전 | 896 | |
| 7595 |
untitled
|
10년 전 | 2431 | |
| 7594 |
프로그래머7
|
10년 전 | 1737 | |
| 7593 |
untitled
|
10년 전 | 2381 | |
| 7592 |
untitled
|
10년 전 | 1949 | |
| 7591 |
untitled
|
10년 전 | 2680 | |
| 7590 |
아리마2001
|
10년 전 | 857 | |
| 7589 | 10년 전 | 1115 | ||
| 7588 |
|
10년 전 | 2925 | |
| 7587 | 10년 전 | 1310 | ||
| 7586 | 10년 전 | 675 | ||
| 7585 | 10년 전 | 1700 | ||
| 7584 | 10년 전 | 1414 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1166 | |
| 7582 |
|
10년 전 | 1122 | |
| 7581 | 10년 전 | 1357 | ||
| 7580 | 10년 전 | 1009 | ||
| 7579 |
|
10년 전 | 611 | |
| 7578 | 10년 전 | 1433 | ||
| 7577 |
|
10년 전 | 1876 | |
| 7576 | 10년 전 | 1392 | ||
| 7575 |
멋진남자임
|
10년 전 | 1468 | |
| 7574 | 10년 전 | 2125 | ||
| 7573 | 10년 전 | 3260 | ||
| 7572 | 10년 전 | 764 | ||
| 7571 |
|
10년 전 | 785 | |
| 7570 |
|
10년 전 | 1320 | |
| 7569 | 10년 전 | 1556 | ||
| 7568 |
this1mg
|
10년 전 | 1055 | |
| 7567 |
|
10년 전 | 766 | |
| 7566 | 10년 전 | 920 | ||
| 7565 |
Angel하늘
|
10년 전 | 1014 | |
| 7564 |
seoldi
|
10년 전 | 1251 | |
| 7563 |
|
10년 전 | 1394 | |
| 7562 |
멋진남자임
|
10년 전 | 2092 | |
| 7561 | 10년 전 | 716 | ||
| 7560 |
leeleeleelee
|
10년 전 | 915 | |
| 7559 | 10년 전 | 5053 | ||
| 7558 |
RinaP
|
10년 전 | 790 | |
| 7557 |
|
10년 전 | 1253 | |
| 7556 | 10년 전 | 1198 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1669 | |
| 7554 | 10년 전 | 1099 | ||
| 7553 |
senseme
|
10년 전 | 1341 | |
| 7552 |
ehdltdoit
|
10년 전 | 1441 | |
| 7551 |
|
10년 전 | 1832 | |
| 7550 |
leeleeleelee
|
10년 전 | 1595 | |
| 7549 | 10년 전 | 2431 | ||
| 7548 | 10년 전 | 1848 | ||
| 7547 |
멋진남자임
|
10년 전 | 1967 | |
| 7546 | 10년 전 | 1010 | ||
| 7545 |
ILMare1003
|
10년 전 | 1294 | |
| 7544 |
|
10년 전 | 1258 | |
| 7543 | 10년 전 | 893 | ||
| 7542 | 10년 전 | 662 | ||
| 7541 |
울라라라우
|
10년 전 | 870 | |
| 7540 | 10년 전 | 1601 | ||
| 7539 | 10년 전 | 942 | ||
| 7538 |
|
10년 전 | 1835 | |
| 7537 | 10년 전 | 3616 | ||
| 7536 |
Gaumi
|
10년 전 | 1419 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1279 | |
| 7534 |
senseme
|
10년 전 | 1210 | |
| 7533 | 10년 전 | 1206 | ||
| 7532 | 10년 전 | 868 | ||
| 7531 | 10년 전 | 2061 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기