<input type="checkbox" id="checkbox1">
<script> $(function(){ $("#checkbox1").click(function(){ if($(this).is(":checked")){ //执行事件 }else{ } }) }) </script>