Close Bootstrap modal on form submit

后端 未结 13 1471
盖世英雄少女心
盖世英雄少女心 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:21

    Add the same attribute as you have on the Close button:

    data-dismiss="modal"
    

    e.g.

    
    

    You can also use jQuery if you wish:

    $('#frmStudent').submit(function() {
    
        // submission stuff
    
        $('#StudentModal').modal('hide');
        return false;
    });
    

提交回复
热议问题