我想要验证像(123) 456-7890或1234567890这样的电话号码。下面的代码中,'matches'条件应该如何编写?
form.validate({ rules: { phoneNumber: {matches:"[0-9]+",minlength:10, maxlength:10}
我的回答:在以下代码中,'matches'条件应该被写为"{matches:/^\(\d{3}\) \d{3}-\d{4}$|^(\d{10})$/"。
用户名或电子邮箱地址
密码