Using JQuery - preventing form from submitting

后端 未结 13 2939
灰色年华
灰色年华 2020-11-22 06:51

How do I prevent a form from submitting using jquery?

I tried everything - see 3 different options I tried below, but it all won\'t work:

    $(docu         


        
13条回答
  •  春和景丽
    2020-11-22 07:14

    Attach the event to the submit element not to the form element. For example in your html do like this

    $('input[type=submit]').on('click', function(e) {
        e.preventDefault();
    });
    

提交回复
热议问题