Reload content in modal (twitter bootstrap)

前端 未结 14 1714
青春惊慌失措
青春惊慌失措 2020-12-02 04:38

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');
    });
    

提交回复
热议问题