随笔分类 - utils 方法类
摘要:// chooseImage.js function updateElementStyle (element, styles) { for (const attrName in styles) { element.style[attrName] = styles[attrName] } } cons
阅读全文
摘要:function(idCard){ var info = {birthday: '', sex: ''}; info.birthday = idCard.substring(6, 10) + "-" + idCard.substring(10, 12) + "-" + idCard.substrin
阅读全文