摘要: const _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; // private property // public method for encoding function encode(input) { var output = ... 阅读全文
posted @ 2018-05-15 16:29 小宋宋 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 一、校验数字的表达式 数字:^[0-9]*$n位的数字:^\d{n}$至少n位的数字:^\d{n,}$m-n位的数字:^\d{m,n}$零和非零开头的数字:^(0|[1-9][0-9]*)$非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]{1,2})?$带1-2位小数的正 阅读全文
posted @ 2018-05-15 09:13 小宋宋 阅读(128) 评论(0) 推荐(0) 编辑