使用一些JQuery,如:
$("input[type=checkBox]").on("click",function(event) { event.stopPropagation(); });
或者使用较短的复选框选择器:
$(":checkBox").on("click",function(event) { event.stopPropagation(); });