function changeInfo(){ $("#复选框的id").click(function() { if ($(this).is(":checked")== true) { //选中触发事件 } else { //取消选中触发事件 } });}