본문 바로가기

SW/JQUERY

체크박스 체크 이벤트 (checkBox Event)

체크박스 체크 이벤트

$(document).ready(function(){
    $("#checkBoxId").change(function(){
        if($("#checkBoxId").is(":checked")){
            alert("체크");
        }
        else{
            alert("체크 해제");
        }
    });
});

 

체크박스 체크/체크 해제 하기

//체크박스 체크하기
$("input:checkbox[id='checkBoxId']").prop("checked", true);
$("#checkBoxId").prop("checked", true);

//체크박스 체크 해제 하기
$("input:checkbox[id='checkBoxId']").prop("checked", false);
$("#checkBoxId").prop("checked", false);