0条评论
还没有人评论过~
$('body').on('hidden.bs.modal','.modal',function(){ $(this).removeData('bs.modal'); });
不起作用。
$('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")) });
有用啊