- /* center modal */
- function centerModals() {
- $(\'#myModal\').each(function(i) {
- var $clone = $(this).clone().css(\'display\', \'block\').appendTo(\'body\'); var top = Math.round(($clone.height() - $clone.find(\'.modal-content\').height()) / 2);
- top = top > 0 ? top : 0;
- $clone.remove();
- $(this).find(\'.modal-content\').css("margin-top", top);
- });
- }
- $(\'#myModal\').on(\'show.bs.modal\', centerModals);
- $(window).on(\'resize\', centerModals);
其中,$(window).on(\'resize\', centerModals); 代表用户改变浏览器时的事件,可以不用,但是改变浏览器,模态框不会跟着变化。
以上的JS代码加到页面的最后即可