개발/웹
jquery checkbox 정리
로그인시러
2016. 8. 16. 16:58
// 체크 박스 모두 체크 $("#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).val(); console.log(test); }); }); // 서버에서 받아온 데이터 체크하기 (콤마로 받아온 경우) $("#updateChecked").click(function() { var splitCode = $("#splitCode").val().split(","); for (var idx in splitCode) { $("input[name=box][value=" + splitCode[idx] + "]").attr("checked", true); } });
출처 : http://lng1982.tistory.com/80