好的。我正在使用模态框弹出窗口来显示动态表的业务详细信息。这张桌子很长。模态框一切正常,但如果说它们滚动到页面底部,它总是会在页面顶部打开模态框。因此,他们将不得不以这种方式向下滚动。
我目前正在使用此代码将我的模态框居中。
function centerPopup(x){
//request data for centering
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var popupHeight = $("#popup" + x).height();
var popupWidth = $("#popup" + x).width();
//centering
$("#popup" + x).css({
"position": "absolute",
"top": windowHeight/2-popupHeight/2,
"left": windowWidth/2-popupWidth/4
});
//only need force for IE6
$('#backgroundPopup').css({
"height": windowHeight
});
}
我不知道这段代码中是否有影响它的东西。一种解决方法是必须向下滚动到它们以前的位置,但我在 .position 上找不到太多文档。