我使用JQ - 验证插件来验证我的表单。但我不知道在jquery中有什么样的验证规则!你能给我推荐一个我可以阅读规则的页面吗?
我有两个字段,NAME和AGE,我希望它验证REQUIRED,MAXLENGTH,NUMBER / CHAR,MIN,MAX
rules: {
new_name: {
required: true,
maxlength: 30,
**number: false //?? I dont want to allowd numbers, only alphabetic chars.**
},
new_age: {
required: true,
maxlength: 3,
**chars: false //?? I dont want to allowd numbers, only alphabetic chars.**
**min: 1 // 1 is the lowest number what they allowed**
**max: 30 // 120 is the highest number what they allowed**
},
是否可以,不写自己的规则?
谢谢。
答案 0 :(得分:0)
您可以在此处找到有关验证插件的所有内容:http://bassistance.de/jquery-plugins/jquery-plugin-validation/
此外,阅读示例代码可能会对您有所帮助:http://jquery.bassistance.de/validate/demo/
答案 1 :(得分:0)
您可以在此处使用正则表达式找到chars
的验证要求:
JQuery validate: How to add a rule for regular expression validation?