摘要:
var date1 = new Date("2019-08-19"); var date2 = new Date("2019-08-19"); if (date1<date2) { layer.msg('初始同步日期请填写“2019-08-19”以后的日期', {time: 1500}); retu 阅读全文
摘要:
$('tr').each(function(){ vat text=$("#text");//搜索内容 if(text!=“全部”){ $(this).css('display','none'); //先隐藏所有tr //判断第二列“td:eq(1)”是否包含搜索内容 if($(this).find 阅读全文
摘要:
1.file_get_contents无法抓取https安全协议的网站 改用curl获取数据 function file_get_contents_by_curl($url){ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_s 阅读全文
摘要:
//$dir-文件地址,$files-存储返回数组,$type-查找文件类型组 public function read_dir($dir,&$files,$type) { if(!is_dir($dir)) { echo "no dir"; return false; } $handle =... 阅读全文
摘要:
执行命令apt-get install redis-server 安装遇到的问题 1.出现apt-get被占用情况,用ps -a|grep apt ,杀死存在的apt进程 2.还不行就执行sudo fuser -vik /var/lib/dpkg/lock 3.继续安装可能会出现 Unable to 阅读全文
摘要:
private void TreeView1_NodeMouseClick(object sender, TreeNodeMouseClickEventArgs e) { if (names!=null&& names.ContainsValue(e.Node.Text.ToString())) { 阅读全文
摘要:
private void GridConfig() { GridGroupSummaryItem item = new GridGroupSummaryItem(); item.FieldName = "group_type"; item.SummaryType = DevExpress.Data. 阅读全文
摘要:
private void gridView1_RowCellStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowCellStyleEventArgs e) { //偶数行奇数列||奇数行偶数列 if ( e.RowHandle != grid 阅读全文
摘要:
转自 https://www.cnblogs.com/qq-xiao/p/6122573.html 阅读全文
摘要:
DataTable dt = new DataTable(); dt.Columns.Add("clmn1", System.Type.GetType("System.String")); dt.Columns.Add("clmn2", System.Type.GetType("System.String")); ... 阅读全文