无法从关闭状态的模态中删除数据.每次显示相同的内容 [英] Unable to removedata from modal on close.Showing same content everytime

查看:59
本文介绍了无法从关闭状态的模态中删除数据.每次显示相同的内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

关闭时无法从模式中删除数据.每次显示相同的内容

Unable to removedata from modal on close.Showing same content everytime

$('body').on('hidden.bs.modal', '.modal', function () {
  $(this).removeData('bs.modal');
});

此功能也不起作用.

推荐答案

我终于可以使我的作品成功

men i can finally made ir works

应该.

        $('body').on('hide.bs.modal', '.modal', function (e) {
        $(this).find('form').trigger("reset");
    });

在此帖子中我不能清除引导模态中的表单数据 Sadikhasan用户钉了它,您需要清除表单数据,但是$(this)是模态div,因此您需要在模态内部找到表单并将其重置.

in this post I cant clear form data from bootstrap modal Sadikhasan user nailed it, you need to clear form data but $(this) is the modal div, so you need to find the form inside the modal and reset it.

这篇关于无法从关闭状态的模态中删除数据.每次显示相同的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆