jQuery实现checkbox全选
反选补充:
$(function(){$(‘#CheckBox3′).click(function(){$(this).attr(‘checked’) == true?$(‘#inputId’).attr(‘checked’, true):$(‘#inputId’).attr(‘checked’, false);})})