Reload content in modal (twitter bootstrap)

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

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


      
      
14条回答
  •  醉话见心
    2020-12-02 05:20

    You can force Modal to refresh the popup by adding this line at the end of the hide method of the Modal plugin (If you are using bootstrap-transition.js v2.1.1, it should be at line 836)

    this.$element.removeData()
    

    Or with an event listener

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

提交回复
热议问题