How clear bootstrap modal on hide

后端 未结 3 590
庸人自扰
庸人自扰 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:21

    this is the easiest fix:

    $('#myModal').on('hidden.bs.modal', function () {
        $(this).find("input,textarea,select").val('').end();
    
    });
    

提交回复
热议问题