开发者

How to remove Jquery Validation Error Messages on click of Clear Button

开发者 https://www.devze.com 2022-12-18 01:13 出处:网络
Edit User and Clear User are separate buttons. Then how will Clear the error message on click of Clear Button using following statement

Edit User and Clear User are separate buttons.

Then how will Clear the error message on click of Clear Button using following statement validator.resetForm(); ?

function clearUser(){ 
  开发者_Go百科     // Need to clear previous errors here 
} 


function editUser(){     
    var validator = $("#editUserForm").validate({ 
            rules: {                             
                userName: "required" 
        },  
        errorElement: "span" ,                
        messages: { 
          userName: errorMessages.E2 
        } 
      }); 

     if(validator.form()){  
        // form submition code 

    } 
} 


I tried the solution but i found there is a litle mistake in the previous solution, you should do this

When you validate your form, you get the validator like this

var jqueryValidator = jQuery("#myForm").validate();

and when you need to reset the form you just invoke the code like this

jqueryValidator.resetForm();

Have a nice day =) I hope I can help you.


just make it global, eg:

var validator;
$(document).ready(function() {
       validator = $('#editUserForm');
});

function clearUser(){ 
       validator.resetForm();
} 

function editUser(){     
    validator.validate({ 
            rules: {                             
                userName: "required" 
        },  
        errorElement: "span" ,                
        messages: { 
          userName: errorMessages.E2 
        } 
      }); 

     if(validator.form()){  
        // form submition code 
    } 
} 

then you need to eliminate the var in editUser().

btw - you can also do:

function clearUser(){ 
       var validator = $('#editUserForm');
       validator.resetForm();
} 
0

精彩评论

暂无评论...
验证码 换一张
取 消