http://docs.jquery.com/Plugins/Validation/Methods#List_of_built-in_Validation_methods
之中 Methods 的章節,要注意的是 minlength, maxlength, rangelength 三個參數的 length 是小寫,有一些 Blog 會把 L 寫成大寫,然後試半天都試不出來 :P
限定 5 ~ 20 個英文字元或數字的寫法:
passwordformat: true
jQuery.validator.addMethod("passwordformat", function(value, element) {
return value.match(new RegExp("^[a-zA-Z0-9]{5,20}$"));
});