摘要: //cb_All复选框是控制全选反选的 cb_One是下面的多个复选框 if($("#cb_All").prop("checked")==true){ $(".cb_One").prop("checked",true); } else{ $(".cb_One").prop("checked",fal 阅读全文
posted @ 2020-07-15 09:34 派大星_o 阅读(163) 评论(0) 推荐(1) 编辑
摘要: 导出的Helper public void ExportExcel<T>(string fileName, List<T> list, Dictionary<string, string> dic) where T : class, new() { Type tp = typeof(T); //获取 阅读全文
posted @ 2020-06-19 11:16 派大星_o 阅读(211) 评论(0) 推荐(2) 编辑