2016年4月18日

摘要: 表名必须一致,开启后必须关闭,否则不能对之后的表进行操作 阅读全文
posted @ 2016-04-18 15:32 linglin 阅读(3008) 评论(0) 推荐(0) 编辑

2016年4月14日

摘要: /*table隔行变色*/ #customers tr { background:#ffffff; } #customers tr:nth-child(2n+1) { background: #A7C942; } #customers tr { background-color: expressio 阅读全文
posted @ 2016-04-14 14:22 linglin 阅读(221) 评论(0) 推荐(0) 编辑

2016年4月9日

摘要: leaflet API: http://blog.sina.com.cn/s/blog_5ff72f610101ku5d.html easyui: http://www.jeasyui.net/plugins/183.html http://www.runoob.com/jeasyui/jquery 阅读全文
posted @ 2016-04-09 16:45 linglin 阅读(190) 评论(0) 推荐(0) 编辑

2016年3月2日

摘要: Bin Dec Hex 缩写/字符 解释 0000 0000 0 00 NUL(null) 空字符 0000 0001 1 01 SOH(start of headline) 标题开始 0000 0010 2 02 STX (start of text) 正文开始 0000 0011 3 03 ET 阅读全文
posted @ 2016-03-02 11:17 linglin 阅读(329) 评论(0) 推荐(0) 编辑

2016年1月13日

摘要: addClass:是添加样式;siblings:是用来获取同辈元素,siblings("tr")的意思就是获取同辈的tr元素;removeClass:是去除样式; 阅读全文
posted @ 2016-01-13 17:26 linglin 阅读(210) 评论(0) 推荐(0) 编辑

2016年1月7日

摘要: 引用:using System.Diagnostics;定义:Stopwatch watch = new Stopwatch();开始监听:watch.Start();此处是执行的代码。。。。。结束监听:watch.Stop();后台提示信息:watch.ElapsedMilliseconds//R... 阅读全文
posted @ 2016-01-07 16:34 linglin 阅读(256) 评论(0) 推荐(0) 编辑

2015年12月9日

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using FS.Extend;using System.Data;using System.Data.OleDb;namespace ... 阅读全文
posted @ 2015-12-09 16:53 linglin 阅读(190) 评论(0) 推荐(0) 编辑

2015年12月2日

摘要: 查找所有的父节点,包括本身,不包括就idwith tbs as(select * from TB_HomeBase where ID=223 union all select a.* from TB_HomeBase a inner join tbs b on a.id=b.ParentID) se... 阅读全文
posted @ 2015-12-02 18:02 linglin 阅读(120) 评论(0) 推荐(0) 编辑
 
摘要: --%> 阅读全文
posted @ 2015-12-02 13:33 linglin 阅读(167) 评论(0) 推荐(0) 编辑
 
摘要: ps:alert(document.getElementById('ha').innerHTML); 如果里面是点击,得到的也是点击. alert(document.getElementById('ha').innerText); // 这个仅IE下有效,但如果里面是点击,得到的只是"点击" 阅读全文
posted @ 2015-12-02 09:59 linglin 阅读(189) 评论(0) 推荐(0) 编辑