How to completely remove a dialog on close

前端 未结 7 2135
深忆病人
深忆病人 2020-12-02 05:56

When an ajax operation fails, I create a new div with the errors and then show it as a dialog. When the dialog is closed I would like to completely destroy and remove the di

7条回答
  •  时光说笑
    2020-12-02 06:42

    I use this function in all my js projects

    You call it: hideAndResetModals("#IdModalDialog")

    You define if:

    function hideAndResetModals(modalID)
    {
        $(modalID).modal('hide');
        clearValidation(modalID); //You implement it if you need it. If not, you can remote this line
        $(modalID).on('hidden.bs.modal', function () 
        {
            $(modalID).find('form').trigger('reset');  
        });
    }
    

提交回复
热议问题