1: 판사라디오
var selected = $('input[name=selectid:checked]').val();//선택하지 않은 경우 val() = null
if(selected == null){
alert(" 선택되지 않음 !");
}else{
alert("선택됨!");
}
2: 확인란 결정
var n = $("input:checked").length ;
if (n==0){
alert("선택되지 않음!");
}else{
alert("선택됨!")
}
$( "div").text(n (n <= 1 ? " is" : " are") " 확인됨!")
3: 모두 선택, 체크박스 배열에서 모든 선택 취소
$("# selAll").click( function(){
$("input[name='cbox[]']").attr("checked",$(this).attr("checked"));
})