JQuery scroll to top of Bootstrap Modal

前端 未结 7 1313
小蘑菇
小蘑菇 2020-12-23 19:37

I\'m currently using the bootstrap modal plugin to display long legal messages on a website I\'m designing, but the problem is that if you open one modal after the other, th

7条回答
  •  轮回少年
    2020-12-23 19:57

    There was change in boostrap where you need to use: on shown.bs.modal

    Call a function when you show the modal window (I opted for this method)

    
    
    function showSMSSummary()
    {
       $('#HelpScreenModalContent').modal('show');            
       $('#HelpScreenModal').animate({ scrollTop: 0 }, 'fast');
    }
    

提交回复
热议问题