码迷,mamicode.com
首页 > 其他好文 > 详细

常用正则

时间:2017-11-03 21:58:42      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:验证   col   com   post   ref   blog   .com   log   http   

金钱验证
1、 var reg = /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/; var money = "520.100"; //000 错 //0 对 //0. 错 //0.0 对 //050 错 //00050.12错 //70.1 对 //70.11 对 //70.111错 //500 正确 if (reg.test(money)) { alert("正确~"); }else{ alert("有误~"); };
2、...
3、
...

4、
...

5、
...

6、
...

7、
...

8、
...

9、
...

 

常用正则

标签:验证   col   com   post   ref   blog   .com   log   http   

原文地址:http://www.cnblogs.com/fly-ff/p/7780124.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!