How to clear all input fields in bootstrap modal when clicking data-dismiss button?

后端 未结 10 826
情话喂你
情话喂你 2020-12-04 10:58

How to clear all input fields in a Bootstrap V3 modal when clicking the data-dismiss button?

10条回答
  •  借酒劲吻你
    2020-12-04 11:32

    enclose your modal body inside a form with an id="myform"

    and then

     $("#activatesimModal").on("hidden.bs.modal",function(){
            myform.reset();
    });
    

    should do the trick

提交回复
热议问题