let reg = /^\d*(\.\d{1,20})?$/;

最多保存20位小数,如果只允许2位小数,可以把20改为3: /^\d*(\.\d{1,3})?$/

相关文章: