Я использую Bootstrap v3.3.5. Каждый раз, когда запускается модальная коробка, прокрутка прячется тем самым, дергая веб -страницу. Не могли бы вы предложить мне исправление. Я попытался добавить Cutsom JS для удаления поля /прокладки, но не работал: < /p>
$(document).on( 'hidden.bs.modal', '.modal', function() {
$(document.body).removeClass( 'modal-scrollbar' );
}).on( 'show.bs.modal', '.modal', function() {
// Bootstrap's .modal-open class hides any scrollbar on the body,
// so if there IS a scrollbar on the body at modal open time, then
// add a right margin to take its place.
if ( $(window).height() < $(document).height() ) {
$(document.body).addClass( 'modal-scrollbar' );
}
});
})(window.jQuery);
});
Подробнее здесь: https://stackoverflow.com/questions/318 ... -scrollbar