-
* 간단한 예제입니다. $(document).ready(function(){ $("#checkBoxId").on('change',function(){ if($("#checkBoxId).is(':checked')){ alert("check on"); }else{ alert("check off"); } }); }); * 간단한 예제입니다.