上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 52 下一页
摘要: var table = document.getElementById("table1"); var t1 = GetTableData(table); var newstr = JSON.stringify(t1); //返回一个新字符串 阅读全文
posted @ 2019-01-14 16:00 enych 阅读(642) 评论(0) 推荐(0) 编辑
摘要: public class A//先定义A类 { } public static class Extension//必须先声明一个静态类,类名随意 { public static int ToInt32(this string In)//扩建的方法必须是静态方法,参数里面必须含有this关键字,this关键字后面的类型 { ... 阅读全文
posted @ 2019-01-10 10:40 enych 阅读(574) 评论(0) 推荐(0) 编辑
摘要: ; !function (win) { var tt1 = 10; //内部私有 , var tt2 = 20; //内部私有 //test.prototype.tt1 = 0;//共有变量 var test = function () {}; test.prototyp... 阅读全文
posted @ 2019-01-07 19:27 enych 阅读(960) 评论(0) 推荐(0) 编辑
摘要: 十进制 十六进制 二进制 右移>>4 十进制值 15 F 0000 1111 0000 0 16 10 0001 0000 0001 1 31 1F 0001 1111 0001 1 32... 阅读全文
posted @ 2019-01-05 17:10 enych 阅读(1349) 评论(0) 推荐(0) 编辑
摘要: 第二种 会出现问题 阅读全文
posted @ 2019-01-03 17:20 enych 阅读(242) 评论(0) 推荐(0) 编辑
摘要: -*-分页查询 SELECT * FROM ( SELECT temp.*, ROWNUM RN FROM (SELECT * FROM 表名) temp ) WHERE RN BETWEEN 1 AND 2 -*-* 连表查询 select count(*) as 总次数 from T_HANDL 阅读全文
posted @ 2019-01-03 10:16 enych 阅读(607) 评论(0) 推荐(0) 编辑
摘要: public void GetWMDay() { List list = new List(); string year = "2019"; DateTime counYear = Convert.ToDateTime(year + "-01-01"); // DateTime ne... 阅读全文
posted @ 2019-01-02 18:20 enych 阅读(1000) 评论(0) 推荐(0) 编辑
摘要: calendarset.do?start=1548518400&end=1552147200&_=1546421856958calendarset.do?start=1550937600&end=1554566400&_=1546421856959calendarset.do?start=15539 阅读全文
posted @ 2019-01-02 18:18 enych 阅读(5392) 评论(0) 推荐(0) 编辑
摘要: 引用某大神回答 Array是数组,动态的 int[]也是数组,但是是静态的。。 http://www.runoob.com/csharp/csharp-array-class.html Array 类是 C# 中所有数组的基类,它是在 System 命名空间中定义。Array 类提供了各种用于数组的 阅读全文
posted @ 2019-01-02 11:40 enych 阅读(2858) 评论(0) 推荐(0) 编辑
摘要: private Bitmap Out1DImg() { // 1.设置条形码规格 EncodingOptions encodeOption = new EncodingOptions(); encodeOption.Height = 68; // 必须制定高度、宽度 enco... 阅读全文
posted @ 2018-12-25 08:22 enych 阅读(5756) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 52 下一页