Close Bootstrap modal on form submit

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

    I am using rails and ajax too and I had the same problem. just run this code

     $('#modalName').modal('hide');
    

    that worked for me but I am trying to also fix it without using jQuery.

提交回复
热议问题