Close Bootstrap modal on form submit

后端 未结 13 1437
盖世英雄少女心
盖世英雄少女心 2020-12-08 07:08

I have a Bootstrap modal dialog which contains a form. The modal dialog contains a submit and a cancel button. Now on submit button click the form is submitted

相关标签:
13条回答
  • 2020-12-08 07:45

    Try this code

    $('#frmStudent').on('submit', function() {
      $(#StudentModal).on('hide.bs.modal', function (e) {
        e.preventDefault();
      })
    });
    
    0 讨论(0)
提交回复
热议问题