jquery 全选 取消全选
$("#checkbox5").click(function() {
??? if ($(this).attr("checked")=="checked") { // 全选
?????? $("input[name='checkbox2']").each(function() {
?????? $(this).attr("checked", true);
????? });
??? } else {
?????? $("input[name='checkbox2']").each(function() {
?????? $(this).attr("checked", false);
????? });
??? }
??? });