How clear bootstrap modal on hide

后端 未结 3 582
庸人自扰
庸人自扰 2021-02-19 04:52

How to can you clear the bootstrap modal on dismiss/hide/close?

I have the following Modal definition:

3条回答
  •  别那么骄傲
    2021-02-19 05:33

    Use val('') based on input types present and use #myModal instead of body

    $('#myModal').on('hidden.bs.modal', function () {
            $('.modal-body').find('textarea,input').val('');
    });
    

    DEMO

提交回复
热议问题