페이지 코드
/*js 부분
* Bind 배치 선택/선택 취소
* 예시
*/
$(function () {
$("#checkall").click(function () {
var stu = $(this).attr("checked");
checkAll(stu);
})
$("input[name='checkbox']").click(function () {
uncheckAll();
})
})
function checkAll(status) {
$("input[name='checkbox']").each(function () {
$(this).attr("checked");
$ (this).attr("checked", status);
})
}
function uncheckAll() {
alert($("input[name='checkbox'] : selected").length);
if ($("input[name='checkbox']:checked").length == $("input[name='checkbox']").length) {
$("#checkall").attr("checked",true);
}
else {
$("#checkall").attr("checked", false); > }
}