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

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

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

10条回答
  •  萌比男神i
    2020-12-04 11:35

    This is helpfull, its work for me..

    $('.bd-example-modal-sm').on('hidden.bs.modal', function () { 
          $(this).find("select").val('').end(); // Clear dropdown content
          $("ul").empty();   // Clear li content 
    });
    

提交回复
热议问题