stopping form submit if the validation fails.

后端 未结 7 2280
青春惊慌失措
青春惊慌失措 2020-12-05 21:17

I am validating the dates in below function. If the validation fails, then the form should not get submitted. I tried returning false in form onsubmit but it still gets subm

7条回答
  •  甜味超标
    2020-12-05 22:17

    you can achieve the same thing using jQuery Form Plugin.

    $(document).ready(function() { 
    
        $('#your_form_id').ajaxForm( { beforeSubmit: dateCheck } ); 
    });
    

提交回复
热议问题