2009-11-12 288 views
0

我使用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** 
}, 

是否有可能,不寫自己的規則?

謝謝。

回答