摘要: onInput = ({ detail }) => { const value = detail.value; // 输入的字符串 const newValue = value.replace(/([^0-9])/g, ''); // 只允许输入数字 const formatValue = newValue.replace(/(\d{4})(?=\d)/g, '$1 '); // 每... 阅读全文
posted @ 2019-09-03 10:58 向着太阳生 阅读(648) 评论(0) 推荐(0) 编辑