随笔分类 -  工具类

存放工具代码,可直接调用接口使用
摘要:根据输入的身份证号码自动填写性别、出生日期、户籍地 身份证输入框在失去焦点后进行判定提取输入的信息 1 function GetAge(idcard) { 2 var len = (idcard + "").length; 3 document.getElementById("error").inn 阅读全文
posted @ 2021-06-21 16:33 jonykuku 阅读(1355) 评论(0) 推荐(0)
摘要:汉字转拼音 1 /* 2 3 description: Pinyin, to get chinese pinyin from chinese. 4 license: MIT-style 5 authors: Bill Lue 6 requires: 7 core/1.2.1: '*' 8 provi 阅读全文
posted @ 2020-08-20 18:17 jonykuku 阅读(173) 评论(0) 推荐(0)
摘要:汉字转拼音 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 using System.Text.RegularExpressions; 5 6 namespace CommonLibrary 7 { 阅读全文
posted @ 2020-08-20 10:24 jonykuku 阅读(1102) 评论(0) 推荐(1)