체크박스 체크 혹은 체크 해제 시 이벤트 발생

권슬기·2023년 4월 18일
0

jquery

목록 보기
6/6
post-thumbnail
<script>
$(document).ready(function(){
    $("#checkBoxId").change(function(){
        if($("#checkBoxId").is(":checked")){
            alert("체크박스 체크했음!");
        }else{
            alert("체크박스 체크 해제!");
        }
    });
});
</script>

출처 : https://zero-gravity.tistory.com/244

profile
병아리 프론트엔드 개발자

0개의 댓글