JavaScript中常用的正则表达式日常整理(全) 校验是否全由数字组成 function isDigit(s) { var patrn= ^[0-9]{1,20}$ ; if (!patrn exec(s)) 正则表达式 2022-04-24 39 点赞 0 评论 59 浏览