jquery-validation 메모
function checkForm(){
validator = $("#commentForm").validate({// #formId ID
errorElement :"span",// "div" , :"label","span"
//wrapper:"li",// "li" errorELement
//errorClass :"validate-error",// css "error"
//onsubmit:false,// , :true
//onfocusout:false,// , :true
//onkeyup :false,// , :true
//onclick:false,// ( checkbox,radiobox)
//focusCleanup:false,// , , false
//focusInvalid : true, // , ( ) , true
//ignore: "#cname" // , , , class
ignoreTitle: true,
validClass: "valid", // , css
success: function(label) { //
label.addClass("valid").html("Ok!")
},
submitHandler:function(form){// , submit , : ,form action="xx"
alert(' ');
},
invalidHandler: function(form, validator) {// ,
var errors = validator.numberOfInvalids(); //
var message = ' ' + errors + ' ';
//alert(message);
},
rules:{
"x.name":{ // name
required: true, // :
minlength3: 5,// : 5
maxlength3 : 10,
checkCharType : [true,false,false,null]
},
"x.sex":{ // name
required: true, // :
minlength2: 5,// : 5
maxlength2 : 10
},
},
messages:{
"x.name":{
required : " ",
minlength : " 5"
},
"x.sex":{
required : " ",
minlength : " 5"
}
}
});
}
function xx(){
//alert($("#commentForm").validate().form()); // , , true, false
$("#commentForm").valid(); //$("#commentForm").valid() form
}
function cl(){
$("#commentForm").validate().resetForm(); //
}
jquery vaidation 을 공부 하 는 과정 에서 문 제 를 발 견 했 습 니 다.onfocusout,onkeyup,onclick 의 기본 값 은 모두 true 입 니 다.그러나 코드 에서 제 가 true 로 다시 설정 하면 오류 가 발생 합 니 다(firebug 알림:f.settings[e].call is not a function).이 유 를 누가 알려 주 시 겠 습 니까?
onfocusout:true,// , :true
onkeyup :true,// , :true
onclick:true,// ( checkbox,radiobox)
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
jQuery 전후 예이 기사에서는 jquery after() 및 before() 메소드의 예를 볼 것입니다. before() 메서드는 선택한 요소 앞에 지정된 콘텐츠를 삽입합니다. after() 메서드는 선택한 요소 뒤에 지정된 콘텐츠...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.