개발/웹21 jquery checkbox 정리 // 체크 박스 모두 체크 $("#checkAll").click(function() { $("input[name=box]:checkbox").each(function() { $(this).attr("checked", true); }); }); // 체크 박스 모두 해제 $("#uncheckAll").click(function() { $("input[name=box]:checkbox").each(function() { $(this).attr("checked", false); }); }); // 체크 되어 있는 값 추출 $("#getCheckedAll").click(function() { $("input[name=box]:checked").each(function() { var test = $(this).v.. 2016. 8. 16. 이전 1 ··· 3 4 5 6 다음