Reload content in modal (twitter bootstrap)

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

I\'m using twitter bootstrap\'s modal popup.


      
      
14条回答
  •  既然无缘
    2020-12-02 05:21

    You can try this:

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

提交回复
热议问题