bootstrap的modal 如何清除上一次数据

2019-01-02 23:32发布

问题:

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

不起作用。

回答1:

        $('body').on('hidden.bs.modal', '.modal', function () {
            console.log("RemoveData before:" + $(this).data("bs.modal"));
            $(this).removeData("bs.modal");
            console.log("RemoveData after:" + $(this).data("bs.modal"))
        });

有用啊



标签: