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

后端 未结 10 813
情话喂你
情话喂你 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:36

    The following worked for me:

    $(':input').val('');
    

    However, it is submitting the form, so it might not be what you are looking for.

提交回复
热议问题