I\'m using twitter bootstrap\'s modal popup.
14条回答 离开以前 (楼主) 2020-12-02 05:11 With Bootstrap 3 you can use 'hidden.bs.modal' event handler to delete any modal-related data, forcing the popup to reload next time: $('#modal').on('hidden.bs.modal', function() { $(this).removeData('bs.modal'); }); 0 讨论(0) 查看其它14个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
With Bootstrap 3 you can use 'hidden.bs.modal' event handler to delete any modal-related data, forcing the popup to reload next time:
$('#modal').on('hidden.bs.modal', function() { $(this).removeData('bs.modal'); });