标签:验证 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