我使用JQ驗證插件來驗證我的表單。但我不知道jQuery中有哪些驗證規則!你能給我一個我可以閱讀規則的頁面嗎?Jquery - 驗證 - 規則
我有兩個字段,姓名和年齡,我希望它來驗證所需,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**
},
是否有可能,不寫自己的規則?
謝謝。
謝謝。我發現除了「Chars」之外的所有內容 - 不是數字規則。你怎麼看,我如何驗證只接受「a-z」字符? – Holian 2009-11-12 14:48:42
Lettersonly - 這是關鍵:) – Holian 2009-11-12 15:04:26