摘要: document.getElementById("hideContent").style.background="#DDDDDD"; 阅读全文
posted @ 2020-07-15 19:57 派大星_o 阅读(772) 评论(0) 推荐(1)
摘要: $("#btn_GM").attr("disabled", true)//禁用 $("#btn_GM").attr("disabled", false);//启用购买按钮 阅读全文
posted @ 2020-07-15 09:39 派大星_o 阅读(133) 评论(0) 推荐(1)
摘要: //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 阅读(171) 评论(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 阅读(222) 评论(0) 推荐(2)