$(document).ready(function(){//全选上边的
	$("#checkAllTop").click(function() { 
		if ($(this).attr("checked") == true) { // 全选
			 $("input[name='chk']").each(function(){$(this).attr("checked", true);});
		} else { // 取消全选 
 			  $("input[name='chk']").each(function(){$(this).attr("checked", false);});
 		}
	}); 
}); 
$(document).ready(function(){//全选下班的 
	$("#checkAllBut").click(function() { 
		if ($(this).attr("checked") == true) { // 全选
			 $("input[name='chk']").each(function(){$(this).attr("checked", true);});
		} else { // 取消全选 
 			  $("input[name='chk']").each(function(){$(this).attr("checked", false);});
 		}
	}); 
}); 
