Validate a form on Click event with validator jQuery

后端 未结 3 894
Happy的楠姐
Happy的楠姐 2021-02-10 01:55

I am using jQuery validate for validate an input. My code:

 $(\'#button\').click( function() {       
    $(\"#form\").validate({              
        rules: {         


        
相关标签:
3条回答
  • 2021-02-10 02:22

    Your code is binding a function to the click event of a button. What you're doing is saying "when this button is clicked, apply form validation to the form".

    This is the incorrect way to use the validation plugin (I'm assuming you're using this validation plugin). Instead, you just execute the validation() method directly onto the form element; the plugin takes care of the submit event.

    So, get rid of the click event binding.

    0 讨论(0)
  • 2021-02-10 02:31

    Use form method form() method with your click event

    0 讨论(0)
  • 2021-02-10 02:33

    Just add .form() to manually trigger the validation immediately (the default behavior waits for a submit event):

    $('#button').click( function() {       
      $("#form").validate({              
        rules: {
          phone: {
            required: true,
            number: true,
            rangelength: [7, 14]
          }
        }
      }).form(); 
    });
    
    0 讨论(0)
提交回复
热议问题