正整数的正则写法 2020-11-17 w, wt 评论关闭 1,392次浏览 //是否为正整数 function isPositiveInteger(s){ var re = /^[0-9]+$/ ; return re.test(s) } console.log(isPositiveInteger( Number )) //返回 true --》正整数; //返回 false --》不是正整数; 转载自原文链接, 如需删除请联系管理员。 原文链接:正整数的正则写法,转载请注明来源! 赞 0 分享到: