上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 58 下一页
摘要: CSS: HTML : 其中 阅读全文
posted @ 2018-09-05 09:44 洛晨随风 阅读(4471) 评论(3) 推荐(0) 编辑
摘要: // 对Date的扩展,将 Date 转化为指定格式的String // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date 阅读全文
posted @ 2018-08-31 14:08 洛晨随风 阅读(251) 评论(0) 推荐(0) 编辑
摘要: IList ret = 类的结果集; return ret.Except(另一个相同类型的对象列表集, new AClassComPare()); public class AClassComPare : IEqualityComparer { /// /// 这里是自定义的规则,如果返回true证明相等 ///... 阅读全文
posted @ 2018-08-29 14:50 洛晨随风 阅读(777) 评论(0) 推荐(0) 编辑
摘要: 组件的基本写法可以如下: HTML: JS: 更灵活的写法如下: HTML: JS: 阅读全文
posted @ 2018-08-28 15:09 洛晨随风 阅读(775) 评论(0) 推荐(0) 编辑
摘要: //去掉字符串末尾指定符号 function RemoveSymbol(str, symbol) { if (str.charAt(str.length - 1) == symbol) { str = str.substring(0, str.length - 1); } return str; } 阅读全文
posted @ 2018-08-20 14:13 洛晨随风 阅读(3796) 评论(0) 推荐(0) 编辑
摘要: SQL: 阅读全文
posted @ 2018-07-30 17:48 洛晨随风 阅读(201) 评论(0) 推荐(0) 编辑
摘要: html CSS 点击事件(jquery): 因为我这里的dom在 阅读全文
posted @ 2018-07-30 09:10 洛晨随风 阅读(1363) 评论(0) 推荐(0) 编辑
摘要: DES加密: DES解密: 阅读全文
posted @ 2018-06-28 10:43 洛晨随风 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: /// /// MD532位加密方式 /// /// 用户原始密码 /// public static string MD5EncryptTo32(string str) { string cl = str; string pwd = ""; ... 阅读全文
posted @ 2018-06-28 10:39 洛晨随风 阅读(6447) 评论(0) 推荐(0) 编辑
摘要: 后台返回的时间是一个格式为 /Date(1530153274362)/ 的unxi时间戳前台转换代码:var matchResult = data.match(/(\d+)/);if (matchResult != null && matchResult.index > 0) { curTime = 阅读全文
posted @ 2018-06-28 10:37 洛晨随风 阅读(199) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 58 下一页