-
$(document).ready(function(){
? ? ?$("#demoForm").validate({
? ? ? ? ? ? rules:{
? ? ? ? ? ? ? ? ? ?username:{
? ? ? ? ? ? ? ? ? ? ? ? ? required:true,
? ? ? ? ? ? ? ? ? ? ? ? ? minlength:2,
? ? ? ? ? ? ? ? ? ? ? ? ? maxlength:10
? ? ? ? ? ? ? ? ?},
? ? ? ? ? ? ? ? password:{
? ? ? ? ? ? ? ? ? ? ? ? ? required:true,
? ? ? ? ? ? ? ? ? ? ? ? ? minlength:2,
? ? ? ? ? ? ? ? ? ? ? ? ? maxlength:16
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ?}
? ? ? ? ? ? ?message:{
? ? ? ? ? ? ? ? ? username:{
? ? ? ? ? ? ? ? ? ? ? ? ?required:"必須填寫用戶名",
? ? ? ? ? ? ? ? ? ? ? ? ?minlength:"用戶名最小為2位",
? ? ? ? ? ? ? ? ? ? ? ? ?maxlength:"用戶名最大為10位"
? ? ? ? ? ? ? ? ? ?}
? ? ? ? ? ? ? ? ? password:{
? ? ? ? ? ? ? ? ? ? ? ? ? required:"必須填寫密碼",
? ? ? ? ? ? ? ? ? ? ? ? ?minlength:"密碼最小為2位",
? ? ? ? ? ? ? ? ? ? ? ? ?maxlength:"密碼最大為16位"
? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ?}
? ? ? })
})
查看全部 -
this.optional(element)代表element在沒有值得時候會直接返回true,即沒有值得時候不進行校驗
查看全部 -
自定義驗證方法
查看全部 -
選擇器擴展
查看全部 -
基本驗證方法
查看全部
舉報