摘要: 如题: 1、JS手机验证 View Code //true 通过function isMobile(value) { if (/^13\d{9}$/g.test(value) || (/^15[0-35-9]\d{8}$/g.test(value)) || (/^18[05-9]\d{8}$/g.test(value))) { return true; } else { return false; }} 2、JS加密SHA1算法 试验了hex_sha1方法,和C#端如下代码返回一致(需要转化下大小写) C#对应代码 System.Text... 阅读全文
posted @ 2012-02-10 16:28 半边书生9527 阅读(2002) 评论(1) 推荐(0) 编辑