jQuery验证不以0或1开头的数字

时间:2011-05-05 10:24:59

标签: jquery jquery-plugins jquery-validate

快速。

我使用jQuery验证,需要验证不能以0或1开头的电话号码。

类似的问题已在jQuery custom validation: phone number starting with 6中发布,但它应该从6开始。我已尝试修改它以满足我的需求 - 但没有任何运气。

            phone_nr: {      
              maxlength: 8,
              minlength: 8,
              number: true
            }

提前谢谢

1 个答案:

答案 0 :(得分:4)

使用自定义函数,例如对其他问题的答案,但使用正则表达式匹配除0或1之外的每个数字,例如:

phone_number.match(/^[2-9]\d+$/