摘要:
class Program { static void Main(string[] args) { //for (int i = 0; i < 100; i++) //{ // SendMessage("131", "131"); //... 阅读全文
摘要:
阅读全文
摘要:
身份证校验 function isChinaIDCard(StrNo) { StrNo = StrNo.toString() if (StrNo.length == 18) { var a, b, c if (!isInteger(StrNo.substr(0, 17))) { return false } a = parseInt(StrNo.substr(0, 1)) * 7 + parseInt(StrNo.substr(1, 1)) * ... 阅读全文