标签:
?
Bootstrap Modal 垂直居中 在 bootstrap.js中修改如下代码:
Modal.prototype.adjustDialog = function () {
var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
?
this.$element.css({
paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : ‘‘,
paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ‘‘
})
// 是弹出框居中。。。
var $modal_dialog = $(this.$element[0]).find(‘.modal-dialog‘);
var m_top = ( $(window).height() - $modal_dialog.height() )/2;
$modal_dialog.css({‘margin‘: m_top + ‘px auto‘});
}
?
Bootstrap Model点击空白处 popup会关闭:
增加属性 data-backdrop="static"
标签:
原文地址:http://www.cnblogs.com/langu/p/4613261.html