체크박스 모두 선택 취소
$("#ChkAll").click(function(){
$("#divContent input[type=' checkbox) ']").attr("체크됨",$(this).attr("체크됨"));
});
선택한 확인란의 값 가져오기:
var arrChk=$("input[name='chk_list'][checked]");
$ (arrChk).each(function(){
window.alert(this.value);
$("#checkbox_id").attr("checked"); //CheckBox 상태 가져오기(선택 여부, true/false 반환)
$("#checkbox_id").attr("checked",true); //CheckBox 상태를 선택됨(checked=true)으로 설정