JQuery scroll to top of Bootstrap Modal

前端 未结 7 1322
小蘑菇
小蘑菇 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:53

    Now with bootstrap 3 the events has change an can be achieved like this (plus a smooth animation to the top)

    $('#modal').on('shown.bs.modal', function () {
        $('#modal').animate({ scrollTop: 0 }, 'slow');
    });
    

提交回复
热议问题