注重:这里修正的bootstrap版本为3.3.0
起首找到bootstrap.js关于模态框的代码段,找到
Modal.prototype.show=function (_relatedTarget) {
//这里是show要领
//...
//...
}
在show要领中适宜的位置增加下面一段代码:
//使模态框垂直居中显现
var $dialog=that.$element.find("div.modal-dialog"),
top=(document.documentElement.clientHeight-$dialog.height())/2;
$dialog.css({"margin":+top+"px auto"});
从新翻开页面会发明,模态框会出如今垂直居中的位置,而且不受滚动条的影响。