快速。
我使用jQuery验证,需要验证不能以0或1开头的电话号码。
类似的问题已在jQuery custom validation: phone number starting with 6中发布,但它应该从6开始。我已尝试修改它以满足我的需求 - 但没有任何运气。
phone_nr: {
maxlength: 8,
minlength: 8,
number: true
}
提前谢谢
答案 0 :(得分:4)
使用自定义函数,例如对其他问题的答案,但使用正则表达式匹配除0或1之外的每个数字,例如:
phone_number.match(/^[2-9]\d+$/