摘要:
CSS: HTML : 其中 阅读全文
摘要:
// 对Date的扩展,将 Date 转化为指定格式的String // 月(M)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(S)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new Date 阅读全文
摘要:
IList ret = 类的结果集; return ret.Except(另一个相同类型的对象列表集, new AClassComPare()); public class AClassComPare : IEqualityComparer { /// /// 这里是自定义的规则,如果返回true证明相等 ///... 阅读全文
摘要:
组件的基本写法可以如下: HTML: JS: 更灵活的写法如下: HTML: JS: 阅读全文
摘要:
//去掉字符串末尾指定符号 function RemoveSymbol(str, symbol) { if (str.charAt(str.length - 1) == symbol) { str = str.substring(0, str.length - 1); } return str; } 阅读全文
摘要:
DES加密: DES解密: 阅读全文
摘要:
/// /// MD532位加密方式 /// /// 用户原始密码 /// public static string MD5EncryptTo32(string str) { string cl = str; string pwd = ""; ... 阅读全文
摘要:
后台返回的时间是一个格式为 /Date(1530153274362)/ 的unxi时间戳前台转换代码:var matchResult = data.match(/(\d+)/);if (matchResult != null && matchResult.index > 0) { curTime = 阅读全文